mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 10:20:52 +02:00
Ports that now run the stress tests, that didn't prior to this commit are: cc3200, esp8266, minimal, nrf, renesas-ra, samd, qemu, webassembly. Signed-off-by: Damien George <damien@micropython.org>
13 lines
180 B
Python
13 lines
180 B
Python
# create a large dictionary
|
|
|
|
d = {}
|
|
x = 1
|
|
while x < 1000:
|
|
try:
|
|
d[x] = x
|
|
except MemoryError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
x += 1
|
|
print(d[500])
|