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