Raise other to the power self, masking the potential NaNs/Infs
(self, other)
| 4307 | return power(self, other) |
| 4308 | |
| 4309 | def __rpow__(self, other): |
| 4310 | """ |
| 4311 | Raise other to the power self, masking the potential NaNs/Infs |
| 4312 | |
| 4313 | """ |
| 4314 | return power(other, self) |
| 4315 | |
| 4316 | def __iadd__(self, other): |
| 4317 | """ |