mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 09:50:15 +01:00
13 lines
148 B
Python
13 lines
148 B
Python
import bench
|
|
|
|
|
|
def test(num):
|
|
for i in range(num // 40):
|
|
|
|
class X:
|
|
def __new__(cls):
|
|
pass
|
|
|
|
|
|
bench.run(test)
|