1import bench
2
3
4def func(a, b, c):
5    pass
6
7
8def test(num):
9    for i in iter(range(num)):
10        func(i, i, i)
11
12
13bench.run(test)
14