func_args-2-pos_default_2_of_3.py 126 B

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