mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-19 20:15:33 -04:00

Adds nothing to the code size, since it uses existing empty slots in the type structures.
8 lines
115 B
Python
8 lines
115 B
Python
# test builtin hash function, on generators
|
|
|
|
def gen():
|
|
yield
|
|
|
|
print(type(hash(gen)))
|
|
print(type(hash(gen())))
|