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

Method __truediv__

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

Source from the content-addressed store, hash-verified

142 return EDecimal(Decimal.__mul__(self, Decimal(other)))
143
144 def __truediv__(self, other):
145 # type: (_Decimal) -> EDecimal
146 return EDecimal(Decimal.__truediv__(self, Decimal(other)))
147
148 def __floordiv__(self, other):
149 # type: (_Decimal) -> EDecimal

Callers

nothing calls this directly

Calls 1

EDecimalClass · 0.85

Tested by

no test coverage detected