(self, other)
| 138 | return EDecimal(Decimal.__mul__(self, Decimal(other))) |
| 139 | |
| 140 | def __rmul__(self, other): |
| 141 | # type: (_Decimal) -> EDecimal |
| 142 | return EDecimal(Decimal.__mul__(self, Decimal(other))) |
| 143 | |
| 144 | def __truediv__(self, other): |
| 145 | # type: (_Decimal) -> EDecimal |