func_args-1.2-pos_3.py 128 B

12345678910
  1. import bench
  2. def func(a, b, c):
  3. pass
  4. def test(num):
  5. for i in iter(range(num)):
  6. func(i, i, i)
  7. bench.run(test)