(self, other)
| 101 | return self.__handle_rbinary__(lambda x, y: x + y, other) |
| 102 | |
| 103 | def __rsub__(self, other): |
| 104 | return self.__handle_rbinary__(lambda x, y: x - y, other) |
| 105 | |
| 106 | def __rmul__(self, other): |
| 107 | return self.__handle_rbinary__(lambda x, y: x * y, other) |
nothing calls this directly
no test coverage detected