(self, other)
| 634 | return self._apply_operator(operator.le, other) |
| 635 | |
| 636 | def __lt__(self, other): |
| 637 | other = other._transform if isinstance(other, Interactive) else 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 |
nothing calls this directly
no test coverage detected