(self, other)
| 2260 | # Comparisons of datetime objects with other. |
| 2261 | |
| 2262 | def __eq__(self, other): |
| 2263 | if isinstance(other, datetime): |
| 2264 | return self._cmp(other, allow_mixed=True) == 0 |
| 2265 | else: |
| 2266 | return NotImplemented |
| 2267 | |
| 2268 | def __le__(self, other): |
| 2269 | if isinstance(other, datetime): |