def __lt__(self, other):
     return Date.__lt__(self, other) or (Date.__eq__(self, other)
                                         and self.hour < other.hour)
 def __eq__(self, other):
     return Date.__eq__(self, other) and self.hour == other.hour