(self, other)
| 552 | return self.__compare__(other, lambda _self, _other: _self != _other) |
| 553 | |
| 554 | def __ge__(self, other): |
| 555 | return self.__compare__(other, lambda _self, _other: _self >= _other) |
| 556 | |
| 557 | def __gt__(self, other): |
| 558 | return self.__compare__(other, lambda _self, _other: _self > _other) |
nothing calls this directly
no test coverage detected