(self, other)
| 451 | return self._astuple() > other._astuple() |
| 452 | |
| 453 | def __ge__(self, other): |
| 454 | if type(self) != type(other): |
| 455 | return NotImplemented |
| 456 | return self._astuple() >= other._astuple() |
| 457 | |
| 458 | |
| 459 | # Verify that NotImplemented works correctly |