(self, other)
| 642 | return self._apply_operator(operator.lshift, other) |
| 643 | |
| 644 | def __mod__(self, other): |
| 645 | other = other._transform if isinstance(other, Interactive) else other |
| 646 | return self._apply_operator(operator.mod, other) |
| 647 | |
| 648 | def __mul__(self, other): |
| 649 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected