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

Method __floordiv__

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

Source from the content-addressed store, hash-verified

146 return EDecimal(Decimal.__truediv__(self, Decimal(other)))
147
148 def __floordiv__(self, other):
149 # type: (_Decimal) -> EDecimal
150 return EDecimal(Decimal.__floordiv__(self, Decimal(other)))
151
152 def __divmod__(self, other):
153 # type: (_Decimal) -> Tuple[EDecimal, EDecimal]

Callers

nothing calls this directly

Calls 1

EDecimalClass · 0.85

Tested by

no test coverage detected