mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 09:50:15 +01:00
13 lines
164 B
Python
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)
|