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