(self, other)
| 155 | return EDecimal(r[0]), EDecimal(r[1]) |
| 156 | |
| 157 | def __mod__(self, other): |
| 158 | # type: (_Decimal) -> EDecimal |
| 159 | return EDecimal(Decimal.__mod__(self, Decimal(other))) |
| 160 | |
| 161 | def __rmod__(self, other): |
| 162 | # type: (_Decimal) -> EDecimal |