(self, other)
| 658 | return self._apply_operator(operator.or_, other) |
| 659 | |
| 660 | def __rshift__(self, other): |
| 661 | other = other._transform if isinstance(other, Interactive) else other |
| 662 | return self._apply_operator(operator.rshift, other) |
| 663 | |
| 664 | def __pow__(self, other): |
| 665 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected