(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) |
| 559 | |
| 560 | def __repr__(self): |
| 561 | parts = [] |
nothing calls this directly
no test coverage detected