You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
372 B
22 lines
372 B
4 years ago
|
# 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()
|