(self, other)
| 183 | return elemwise(operator.pow, self, other) |
| 184 | |
| 185 | def __rpow__(self, other): |
| 186 | return elemwise(operator.pow, other, self) |
| 187 | |
| 188 | def __truediv__(self, other): |
| 189 | return elemwise(operator.truediv, self, other) |
nothing calls this directly
no test coverage detected