DEBSOURCES
Skip Quicknav
sources / micropython / 1.26.1%2Bds-1 / tests / internal_bench / class_create-6.2-property.py
12345678910111213
import bench def test(num): for i in range(num // 40): class X: @property def x(self): pass bench.run(test)