PythonExtra/tests/internal_bench/loop_count-3-while_up.py

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

11 lines
92 B
Python
Raw Permalink Normal View History

import bench
def test(num):
i = 0
while i < num:
i += 1
bench.run(test)