(self, other)
| 89 | return self.__handle_binary__(lambda x, y: x - y, other) |
| 90 | |
| 91 | def __mul__(self, other): |
| 92 | return self.__handle_binary__(lambda x, y: x * y, other) |
| 93 | |
| 94 | def __div__(self, other): |
| 95 | return self.__handle_binary__(lambda x, y: x / y, other) |
nothing calls this directly
no test coverage detected