(self, 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 |
| 707 | return self._apply_operator(operator.or_, other, reverse=True) |
| 708 | |
| 709 | def __rpow__(self, other): |
| 710 | other = other._transform if isinstance(other, Interactive) else other |
nothing calls this directly
no test coverage detected