(self, other)
| 95 | return self.__handle_binary__(lambda x, y: x / y, other) |
| 96 | |
| 97 | def __mod__(self, other): |
| 98 | return self.__handle_binary__(lambda x, y: x % y, other) |
| 99 | |
| 100 | def __radd__(self, other): |
| 101 | return self.__handle_rbinary__(lambda x, y: x + y, other) |
nothing calls this directly
no test coverage detected