(self, other)
| 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 |