(self, other)
| 107 | return self.__handle_rbinary__(lambda x, y: x * y, other) |
| 108 | |
| 109 | def __rdiv__(self, other): |
| 110 | return self.__handle_rbinary__(lambda x, y: x / y, other) |
| 111 | |
| 112 | def __rmod__(self, other): |
| 113 | return self.__handle_rbinary__(lambda x, y: x % y, other) |
nothing calls this directly
no test coverage detected