diff options
Diffstat (limited to 'tests/internal_bench/func_args-1.2-pos_3.py')
-rw-r--r-- | tests/internal_bench/func_args-1.2-pos_3.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/internal_bench/func_args-1.2-pos_3.py b/tests/internal_bench/func_args-1.2-pos_3.py new file mode 100644 index 0000000000..7e03ee2f85 --- /dev/null +++ b/tests/internal_bench/func_args-1.2-pos_3.py @@ -0,0 +1,10 @@ +import bench + +def func(a, b, c): + pass + +def test(num): + for i in iter(range(num)): + func(i, i, i) + +bench.run(test) |