circuitpython/tests/internal_bench/from_iter-4-tuple_unbound.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
151 B
Python
Raw Normal View History

import bench
2021-03-15 09:57:36 -04:00
def test(num):
2021-03-15 09:57:36 -04:00
for i in iter(range(num // 10000)):
l = [0] * 1000
l2 = tuple(map(lambda x: x, l))
2021-03-15 09:57:36 -04:00
bench.run(test)