(self, other)
| 180 | return elemwise(operator.sub, other, self) |
| 181 | |
| 182 | def __pow__(self, other): |
| 183 | return elemwise(operator.pow, self, other) |
| 184 | |
| 185 | def __rpow__(self, other): |
| 186 | return elemwise(operator.pow, other, self) |
nothing calls this directly
no test coverage detected