(self, other)
| 186 | return elemwise(operator.pow, other, self) |
| 187 | |
| 188 | def __truediv__(self, other): |
| 189 | return elemwise(operator.truediv, self, other) |
| 190 | |
| 191 | def __rtruediv__(self, other): |
| 192 | return elemwise(operator.truediv, other, self) |
nothing calls this directly
no test coverage detected