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

Method __rsub__

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

Source from the content-addressed store, hash-verified

130 return EDecimal(Decimal.__sub__(self, Decimal(other)))
131
132 def __rsub__(self, other):
133 # type: (_Decimal) -> EDecimal
134 return EDecimal(Decimal.__rsub__(self, Decimal(other)))
135
136 def __mul__(self, other):
137 # type: (_Decimal) -> EDecimal

Callers

nothing calls this directly

Calls 1

EDecimalClass · 0.85

Tested by

no test coverage detected