(self, other)
| 683 | return self._apply_operator(operator.and_, other, reverse=True) |
| 684 | |
| 685 | def __rdiv__(self, other): |
| 686 | other = other._transform if isinstance(other, Interactive) else other |
| 687 | return self._apply_operator(operator.div, other, reverse=True) |
| 688 | |
| 689 | def __rfloordiv__(self, other): |
| 690 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected