(self, other)
| 2278 | return NotImplemented |
| 2279 | |
| 2280 | def __ge__(self, other): |
| 2281 | if isinstance(other, datetime): |
| 2282 | return self._cmp(other) >= 0 |
| 2283 | else: |
| 2284 | return NotImplemented |
| 2285 | |
| 2286 | def __gt__(self, other): |
| 2287 | if isinstance(other, datetime): |