(self, other)
| 142 | return EDecimal(Decimal.__mul__(self, Decimal(other))) |
| 143 | |
| 144 | def __truediv__(self, other): |
| 145 | # type: (_Decimal) -> EDecimal |
| 146 | return EDecimal(Decimal.__truediv__(self, Decimal(other))) |
| 147 | |
| 148 | def __floordiv__(self, other): |
| 149 | # type: (_Decimal) -> EDecimal |