(self, other)
| 2122 | _cmperror(self, other) |
| 2123 | |
| 2124 | def __ge__(self, other): |
| 2125 | if isinstance(other, datetime): |
| 2126 | return self._cmp(other) >= 0 |
| 2127 | elif not isinstance(other, date): |
| 2128 | return NotImplemented |
| 2129 | else: |
| 2130 | _cmperror(self, other) |
| 2131 | |
| 2132 | def __gt__(self, other): |
| 2133 | if isinstance(other, datetime): |