(self, other)
| 606 | |
| 607 | # Binary operators |
| 608 | def __add__(self, other): |
| 609 | other = other._transform if isinstance(other, Interactive) else 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 |
nothing calls this directly
no test coverage detected