DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / internal_bench / var-5-class-attr.py
1234567891011121314
import bench class Foo: num = 20000000 def test(num): i = 0 while i < Foo.num: i += 1 bench.run(test)