(self, other)
| 711 | return self._apply_operator(operator.pow, other, reverse=True) |
| 712 | |
| 713 | def __rrshift__(self, other): |
| 714 | other = other._transform if isinstance(other, Interactive) else other |
| 715 | return self._apply_operator(operator.rrshift, other) |
| 716 | |
| 717 | def __rsub__(self, other): |
| 718 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected