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.
34 lines
951 B
34 lines
951 B
# test native try handling
|
|
|
|
# deeply nested try (9 deep)
|
|
@micropython.native
|
|
def f():
|
|
try:
|
|
try:
|
|
try:
|
|
try:
|
|
try:
|
|
try:
|
|
try:
|
|
try:
|
|
try:
|
|
raise ValueError
|
|
finally:
|
|
print(8)
|
|
finally:
|
|
print(7)
|
|
finally:
|
|
print(6)
|
|
finally:
|
|
print(5)
|
|
finally:
|
|
print(4)
|
|
finally:
|
|
print(3)
|
|
finally:
|
|
print(2)
|
|
finally:
|
|
print(1)
|
|
except ValueError:
|
|
print('ValueError')
|
|
f()
|
|
|