Files
micropython/tests/internal_bench/class_create-6-getattribute.py
2025-07-29 10:08:53 +10:00

13 lines
164 B
Python

import bench
def test(num):
for i in range(num // 40):
class X:
def __getattribute__(self, name):
pass
bench.run(test)