Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# test native try handling
# deeply nested try (9 deep)
@micropython.native
def f():
try:
raise ValueError
finally:
print(8)
print(7)
print(6)
print(5)
print(4)
print(3)
print(2)
print(1)
except ValueError:
print("ValueError")
f()