(self, other)
| 2229 | return NotImplemented |
| 2230 | |
| 2231 | def __lt__(self, other): |
| 2232 | if isinstance(other, datetime): |
| 2233 | return self._cmp(other) < 0 |
| 2234 | else: |
| 2235 | return NotImplemented |
| 2236 | |
| 2237 | def __ge__(self, other): |
| 2238 | if isinstance(other, datetime): |
nothing calls this directly
no test coverage detected