def __cmp__(self, y): """Compare two timestamps""" if isinstance(y, timestamp): return cmp(self.value, y.value) else: raise TimestampComparisonError