(self, other)
| 610 | return self._apply_operator(operator.add, other) |
| 611 | |
| 612 | def __and__(self, other): |
| 613 | other = other._transform if isinstance(other, Interactive) else other |
| 614 | return self._apply_operator(operator.and_, other) |
| 615 | |
| 616 | def __eq__(self, other): |
| 617 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected