You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
22 lines
372 B
Python
22 lines
372 B
Python
|
|
# test handling of failed heap allocation with dict
|
||
|
|
|
||
|
|
import micropython
|
||
|
|
|
||
|
|
# create dict
|
||
|
|
x = 1
|
||
|
|
micropython.heap_lock()
|
||
|
|
try:
|
||
|
|
{x:x}
|
||
|
|
except MemoryError:
|
||
|
|
print('MemoryError: create dict')
|
||
|
|
micropython.heap_unlock()
|
||
|
|
|
||
|
|
# create dict view
|
||
|
|
x = {1:1}
|
||
|
|
micropython.heap_lock()
|
||
|
|
try:
|
||
|
|
x.items()
|
||
|
|
except MemoryError:
|
||
|
|
print('MemoryError: dict.items')
|
||
|
|
micropython.heap_unlock()
|