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