(self, other)
| 622 | return self._apply_operator(operator.floordiv, other) |
| 623 | |
| 624 | def __ge__(self, other): |
| 625 | other = other._transform if isinstance(other, Interactive) else other |
| 626 | return self._apply_operator(operator.ge, other) |
| 627 | |
| 628 | def __gt__(self, other): |
| 629 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected