(self, other, mod=None)
| 3601 | return I(int(self) + int(other)) |
| 3602 | __radd__ = __add__ |
| 3603 | def __pow__(self, other, mod=None): |
| 3604 | if mod is None: |
| 3605 | return I(pow(int(self), int(other))) |
| 3606 | else: |
| 3607 | return I(pow(int(self), int(other), int(mod))) |
| 3608 | def __rpow__(self, other, mod=None): |
| 3609 | if mod is None: |
| 3610 | return I(pow(int(other), int(self), mod)) |