summaryrefslogtreecommitdiffstatshomepage
path: root/tests/internal_bench/func_args-3.2-kw_3.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/internal_bench/func_args-3.2-kw_3.py')
-rw-r--r--tests/internal_bench/func_args-3.2-kw_3.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/internal_bench/func_args-3.2-kw_3.py b/tests/internal_bench/func_args-3.2-kw_3.py
new file mode 100644
index 0000000000..7f95106841
--- /dev/null
+++ b/tests/internal_bench/func_args-3.2-kw_3.py
@@ -0,0 +1,10 @@
+import bench
+
+def func(a, b, c):
+ pass
+
+def test(num):
+ for i in iter(range(num)):
+ func(c=i, b=i, a=i)
+
+bench.run(test)