Raise other to the power self, masking the potential NaNs/Infs
(self, other)
| 4394 | return power(self, other) |
| 4395 | |
| 4396 | def __rpow__(self, other): |
| 4397 | """ |
| 4398 | Raise other to the power self, masking the potential NaNs/Infs |
| 4399 | |
| 4400 | """ |
| 4401 | return power(other, self) |
| 4402 | |
| 4403 | def __iadd__(self, other): |
| 4404 | """ |