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