DEBSOURCES
Skip Quicknav
sources / giac / 1.9.0.93%2Bdfsg2-3 / 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)