t355.py 226 B

123456789101112131415
  1. class Foo:
  2. def __init__(self, x):
  3. self.lst = [x]
  4. def __eq__(self, other):
  5. return self.lst == other.lst
  6. f1 = Foo(3)
  7. f2 = Foo(3)
  8. f3 = Foo(4)
  9. print f1 == f1
  10. print f1 == f2
  11. print f1 != f3
  12. print f1 != f2