blob: 83a69c918f14df4959fdde7a069001e1d5926264 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Types are hashable
print(hash(type) != 0)
print(hash(int) != 0)
print(hash(list) != 0)
class Foo: pass
print(hash(Foo) != 0)
print(int == int)
print(int != list)
d = {}
d[int] = float
|