(self, other)
| 4202 | return self._comparison(other, operator.lt) |
| 4203 | |
| 4204 | def __ge__(self, other): |
| 4205 | return self._comparison(other, operator.ge) |
| 4206 | |
| 4207 | def __gt__(self, other): |
| 4208 | return self._comparison(other, operator.gt) |
nothing calls this directly
no test coverage detected