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

Method __radd__

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

Source from the content-addressed store, hash-verified

122 return EDecimal(Decimal.__add__(self, Decimal(other)))
123
124 def __radd__(self, other):
125 # type: (_Decimal) -> EDecimal
126 return EDecimal(Decimal.__add__(self, Decimal(other)))
127
128 def __sub__(self, other):
129 # type: (_Decimal) -> EDecimal

Callers

nothing calls this directly

Calls 2

EDecimalClass · 0.85
__add__Method · 0.45

Tested by

no test coverage detected