(self, other: Self)
| 486 | return self._normalize() < other._normalize() |
| 487 | |
| 488 | def __le__(self, other: Self) -> bool: |
| 489 | return self._normalize() <= other._normalize() |
| 490 | |
| 491 | @override |
| 492 | def __eq__(self, other: object) -> bool: |
nothing calls this directly
no test coverage detected