#!/usr/local/bin/python2 class C(object): @property def a(self): return 0 def __eq__(self, other): return self.a == other def __lt__(self, other): return self.a < other c = C() print c == 0