summaryrefslogtreecommitdiff
path: root/tests/internal_bench/func_args-1.1-pos_1.py
blob: cadb17768c5ba10a9073cfa236373481c7ccccd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import bench


def func(a):
    pass


def test(num):
    for i in iter(range(num)):
        func(i)


bench.run(test)