(self, other)
| 126 | return EDecimal(Decimal.__add__(self, Decimal(other))) |
| 127 | |
| 128 | def __sub__(self, other): |
| 129 | # type: (_Decimal) -> EDecimal |
| 130 | return EDecimal(Decimal.__sub__(self, Decimal(other))) |
| 131 | |
| 132 | def __rsub__(self, other): |
| 133 | # type: (_Decimal) -> EDecimal |