(self, other)
| 146 | return EDecimal(Decimal.__truediv__(self, Decimal(other))) |
| 147 | |
| 148 | def __floordiv__(self, other): |
| 149 | # type: (_Decimal) -> EDecimal |
| 150 | return EDecimal(Decimal.__floordiv__(self, Decimal(other))) |
| 151 | |
| 152 | def __divmod__(self, other): |
| 153 | # type: (_Decimal) -> Tuple[EDecimal, EDecimal] |