(self, other)
| 695 | return self._apply_operator(operator.rlshift, other) |
| 696 | |
| 697 | def __rmod__(self, other): |
| 698 | other = other._transform if isinstance(other, Interactive) else other |
| 699 | return self._apply_operator(operator.mod, other, reverse=True) |
| 700 | |
| 701 | def __rmul__(self, other): |
| 702 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected