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


def func(a, b, c):
    pass


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


bench.run(test)