Files
TencentOS-tiny/components/language/micropython/tests/internal_bench/var-8-namedtuple-1st.py
2022-09-29 12:10:37 +08:00

15 lines
192 B
Python

import bench
from ucollections import namedtuple
T = namedtuple("Tup", ["num", "bar"])
def test(num):
t = T(20000000, 0)
i = 0
while i < t.num:
i += 1
bench.run(test)