mirror of
https://github.com/micropython/micropython.git
synced 2026-05-01 13:20:14 +02:00
c3e77ad6db
Signed-off-by: Anson Mansfield <amansfield@mantaro.com>
13 lines
137 B
Python
13 lines
137 B
Python
import bench
|
|
|
|
|
|
def test(num):
|
|
l = ["x"]
|
|
for i in range(num // 40):
|
|
|
|
class X:
|
|
__slots__ = l
|
|
|
|
|
|
bench.run(test)
|