(self, other)
| 2272 | return NotImplemented |
| 2273 | |
| 2274 | def __lt__(self, other): |
| 2275 | if isinstance(other, datetime): |
| 2276 | return self._cmp(other) < 0 |
| 2277 | else: |
| 2278 | return NotImplemented |
| 2279 | |
| 2280 | def __ge__(self, other): |
| 2281 | if isinstance(other, datetime): |