(self, other)
| 4298 | return self._comparison(other, operator.lt) |
| 4299 | |
| 4300 | def __ge__(self, other): |
| 4301 | return self._comparison(other, operator.ge) |
| 4302 | |
| 4303 | def __gt__(self, other): |
| 4304 | return self._comparison(other, operator.gt) |
nothing calls this directly
no test coverage detected