circuitpython/tests/internal_bench/from_iter-2-list_unbound.py

11 lines
150 B
Python
Raw Normal View History

import bench
2021-03-15 19:27:36 +05:30
def test(num):
2021-03-15 19:27:36 +05:30
for i in iter(range(num // 10000)):
l = [0] * 1000
l2 = list(map(lambda x: x, l))
2021-03-15 19:27:36 +05:30
bench.run(test)