(self, other)
| 1098 | # Comparisons of date objects with other. |
| 1099 | |
| 1100 | def __eq__(self, other): |
| 1101 | if isinstance(other, date): |
| 1102 | return self._cmp(other) == 0 |
| 1103 | return NotImplemented |
| 1104 | |
| 1105 | def __le__(self, other): |
| 1106 | if isinstance(other, date): |