PythonExtra/tests/internal_bench/func_args-1.2-pos_3.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
131 B
Python
Raw Permalink Normal View History

import bench
def func(a, b, c):
pass
def test(num):
for i in iter(range(num)):
func(i, i, i)
bench.run(test)