(self, other)
| 638 | return self._apply_operator(operator.lt, other) |
| 639 | |
| 640 | def __lshift__(self, other): |
| 641 | other = other._transform if isinstance(other, Interactive) else 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 |
nothing calls this directly
no test coverage detected