MCPcopy Index your code
hub / github.com/secdev/scapy / __mul__

Method __mul__

scapy/utils.py:136–138  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

134 return EDecimal(Decimal.__rsub__(self, Decimal(other)))
135
136 def __mul__(self, other):
137 # type: (_Decimal) -> EDecimal
138 return EDecimal(Decimal.__mul__(self, Decimal(other)))
139
140 def __rmul__(self, other):
141 # type: (_Decimal) -> EDecimal

Callers 1

__rmul__Method · 0.45

Calls 1

EDecimalClass · 0.85

Tested by

no test coverage detected