(self, other)
| 150 | return EDecimal(Decimal.__floordiv__(self, Decimal(other))) |
| 151 | |
| 152 | def __divmod__(self, other): |
| 153 | # type: (_Decimal) -> Tuple[EDecimal, EDecimal] |
| 154 | r = Decimal.__divmod__(self, Decimal(other)) |
| 155 | return EDecimal(r[0]), EDecimal(r[1]) |
| 156 | |
| 157 | def __mod__(self, other): |
| 158 | # type: (_Decimal) -> EDecimal |