(self, other)
| 4196 | |
| 4197 | # All other comparisons: |
| 4198 | def __le__(self, other): |
| 4199 | return self._comparison(other, operator.le) |
| 4200 | |
| 4201 | def __lt__(self, other): |
| 4202 | return self._comparison(other, operator.lt) |
nothing calls this directly
no test coverage detected