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