tests: Add test for hash of user defined class.
This commit is contained in:
parent
e00eeaf4cd
commit
4df85e49d4
|
@ -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})
|
Loading…
Reference in New Issue