(self, other: Self)
| 503 | return self._normalize() != other._normalize() |
| 504 | |
| 505 | def __gt__(self, other: Self) -> bool: |
| 506 | return self._normalize() > other._normalize() |
| 507 | |
| 508 | def __ge__(self, other: Self) -> bool: |
| 509 | return self._normalize() >= other._normalize() |
nothing calls this directly
no test coverage detected