(self, other)
| 699 | return self._apply_operator(operator.mod, other, reverse=True) |
| 700 | |
| 701 | def __rmul__(self, other): |
| 702 | other = other._transform if isinstance(other, Interactive) else other |
| 703 | return self._apply_operator(operator.mul, other, reverse=True) |
| 704 | |
| 705 | def __ror__(self, other): |
| 706 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected