(self, other)
| 446 | return self._astuple() <= other._astuple() |
| 447 | |
| 448 | def __gt__(self, other): |
| 449 | if type(self) != type(other): |
| 450 | return NotImplemented |
| 451 | return self._astuple() > other._astuple() |
| 452 | |
| 453 | def __ge__(self, other): |
| 454 | if type(self) != type(other): |