(self, other)
| 2266 | return NotImplemented |
| 2267 | |
| 2268 | def __le__(self, other): |
| 2269 | if isinstance(other, datetime): |
| 2270 | return self._cmp(other) <= 0 |
| 2271 | else: |
| 2272 | return NotImplemented |
| 2273 | |
| 2274 | def __lt__(self, other): |
| 2275 | if isinstance(other, datetime): |