DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / internal_bench / loop_count-5-while_down_ne.py
123456789
import bench def test(num): while num != 0: num -= 1 bench.run(test)