Swaps self/other and returns __pow__.
(self, other, modulo=None, context=None)
| 2467 | return ans |
| 2468 | |
| 2469 | def __rpow__(self, other, modulo=None, context=None): |
| 2470 | """Swaps self/other and returns __pow__.""" |
| 2471 | other = _convert_other(other) |
| 2472 | if other is NotImplemented: |
| 2473 | return other |
| 2474 | return other.__pow__(self, modulo, context=context) |
| 2475 | |
| 2476 | def normalize(self, context=None): |
| 2477 | """Normalize- strip trailing 0s, change anything equal to 0 to 0e0""" |
nothing calls this directly
no test coverage detected