mirror of
https://github.com/micropython/micropython.git
synced 2026-04-30 21:00:12 +02:00
c3e77ad6db
Signed-off-by: Anson Mansfield <amansfield@mantaro.com>
14 lines
167 B
Python
14 lines
167 B
Python
import bench
|
|
|
|
|
|
def test(num):
|
|
for i in range(num // 40):
|
|
|
|
class X:
|
|
@classmethod
|
|
def x(cls):
|
|
pass
|
|
|
|
|
|
bench.run(test)
|