(self, other)
| 646 | return self._apply_operator(operator.mod, other) |
| 647 | |
| 648 | def __mul__(self, other): |
| 649 | other = other._transform if isinstance(other, Interactive) else other |
| 650 | return self._apply_operator(operator.mul, other) |
| 651 | |
| 652 | def __ne__(self, other): |
| 653 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected