Raise self to the power other, masking the potential NaNs/Infs
(self, other)
| 4298 | return floor_divide(other, self) |
| 4299 | |
| 4300 | def __pow__(self, other): |
| 4301 | """ |
| 4302 | Raise self to the power other, masking the potential NaNs/Infs |
| 4303 | |
| 4304 | """ |
| 4305 | if self._delegate_binop(other): |
| 4306 | return NotImplemented |
| 4307 | return power(self, other) |
| 4308 | |
| 4309 | def __rpow__(self, other): |
| 4310 | """ |
nothing calls this directly
no test coverage detected