(self, other: object)
| 497 | |
| 498 | @override |
| 499 | def __ne__(self, other: object) -> bool: |
| 500 | if not isinstance(other, Size): |
| 501 | return NotImplemented |
| 502 | |
| 503 | return self._normalize() != other._normalize() |
| 504 | |
| 505 | def __gt__(self, other: Self) -> bool: |
| 506 | return self._normalize() > other._normalize() |
nothing calls this directly
no test coverage detected