summaryrefslogtreecommitdiff
path: root/tests/internal_bench/var-8.1-namedtuple-5th.py
blob: 568ece8067143a17aa1fb9f54bf0f63910691755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import bench
from ucollections import namedtuple

T = namedtuple("Tup", ["foo1", "foo2", "foo3", "foo4", "num"])


def test(num):
    t = T(0, 0, 0, 0, 20000000)
    i = 0
    while i < t.num:
        i += 1


bench.run(test)