(self, other)
| 159 | return EDecimal(Decimal.__mod__(self, Decimal(other))) |
| 160 | |
| 161 | def __rmod__(self, other): |
| 162 | # type: (_Decimal) -> EDecimal |
| 163 | return EDecimal(Decimal.__rmod__(self, Decimal(other))) |
| 164 | |
| 165 | def __pow__(self, other, modulo=None): |
| 166 | # type: (_Decimal, Optional[_Decimal]) -> EDecimal |