Raise self to the power other, masking the potential NaNs/Infs
(self, other)
| 4385 | return floor_divide(other, self) |
| 4386 | |
| 4387 | def __pow__(self, other): |
| 4388 | """ |
| 4389 | Raise self to the power other, masking the potential NaNs/Infs |
| 4390 | |
| 4391 | """ |
| 4392 | if self._delegate_binop(other): |
| 4393 | return NotImplemented |
| 4394 | return power(self, other) |
| 4395 | |
| 4396 | def __rpow__(self, other): |
| 4397 | """ |
nothing calls this directly
no test coverage detected