(self, other)
| 4295 | return self._comparison(other, operator.le) |
| 4296 | |
| 4297 | def __lt__(self, other): |
| 4298 | return self._comparison(other, operator.lt) |
| 4299 | |
| 4300 | def __ge__(self, other): |
| 4301 | return self._comparison(other, operator.ge) |
nothing calls this directly
no test coverage detected