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

Method __rmul__

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

Source from the content-addressed store, hash-verified

138 return EDecimal(Decimal.__mul__(self, Decimal(other)))
139
140 def __rmul__(self, other):
141 # type: (_Decimal) -> EDecimal
142 return EDecimal(Decimal.__mul__(self, Decimal(other)))
143
144 def __truediv__(self, other):
145 # type: (_Decimal) -> EDecimal

Callers

nothing calls this directly

Calls 2

EDecimalClass · 0.85
__mul__Method · 0.45

Tested by

no test coverage detected