micropython/tests/basics/subclass_native_iter.py

8 wiersze
142 B
Python

# test subclassing a native type which can be iterated over
class mymap(map):
pass
m = mymap(lambda x: x + 10, range(4))
print(list(m))