(self, other)
| 4292 | |
| 4293 | # All other comparisons: |
| 4294 | def __le__(self, other): |
| 4295 | return self._comparison(other, operator.le) |
| 4296 | |
| 4297 | def __lt__(self, other): |
| 4298 | return self._comparison(other, operator.lt) |
nothing calls this directly
no test coverage detected