(self, other)
| 134 | return EDecimal(Decimal.__rsub__(self, Decimal(other))) |
| 135 | |
| 136 | def __mul__(self, other): |
| 137 | # type: (_Decimal) -> EDecimal |
| 138 | return EDecimal(Decimal.__mul__(self, Decimal(other))) |
| 139 | |
| 140 | def __rmul__(self, other): |
| 141 | # type: (_Decimal) -> EDecimal |