(self, other)
| 543 | return self.__compare__(other, lambda _self, _other: _self < _other) |
| 544 | |
| 545 | def __le__(self, other): |
| 546 | return self.__compare__(other, lambda _self, _other: _self <= _other) |
| 547 | |
| 548 | def __eq__(self, other): |
| 549 | return self.__compare__(other, lambda _self, _other: _self == _other) |
nothing calls this directly
no test coverage detected