(self, other)
| 208 | return self.tuple > other.tuple |
| 209 | |
| 210 | def __ge__(self, other): |
| 211 | other = self._validate_operand(other) |
| 212 | return self.tuple >= other.tuple |
| 213 | |
| 214 | def __hash__(self) -> int: |
| 215 | return hash(self.tuple) |
nothing calls this directly
no test coverage detected