(self, other)
| 2223 | return NotImplemented |
| 2224 | |
| 2225 | def __le__(self, other): |
| 2226 | if isinstance(other, datetime): |
| 2227 | return self._cmp(other) <= 0 |
| 2228 | else: |
| 2229 | return NotImplemented |
| 2230 | |
| 2231 | def __lt__(self, other): |
| 2232 | if isinstance(other, datetime): |
nothing calls this directly
no test coverage detected