fork download
  1. class A(int):
  2. def __hash__(self):
  3. return 1
  4.  
  5. print({A(1), A(2)})
Success #stdin #stdout 0.03s 9640KB
stdin
Standard input is empty
stdout
{1, 2}