Files
2022-09-29 12:10:37 +08:00

8 lines
115 B
Python

# test builtin hash function, on generators
def gen():
yield
print(type(hash(gen)))
print(type(hash(gen())))