(self, other)
| 666 | return self._apply_operator(operator.pow, other) |
| 667 | |
| 668 | def __sub__(self, other): |
| 669 | other = other._transform if isinstance(other, Interactive) else other |
| 670 | return self._apply_operator(operator.sub, other) |
| 671 | |
| 672 | def __truediv__(self, other): |
| 673 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected