from java.lang import Comparable class Dog(Comparable): def compareTo(self, o): return 0 def bark(self): print "woof woof" print Dog().bark()