tests: Add test for hash of user defined class.

pull/971/merge
Damien George 2014-11-15 18:30:01 +00:00
rodzic e00eeaf4cd
commit 4df85e49d4
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,10 @@
# test builtin hash function
class A:
def __hash__(self):
return 123
def __repr__(self):
return "a instance"
print(hash(A()))
print({A():1})