Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
651 B
Python
Raw Normal View History

# test try handling within a viper function
2023-02-01 13:38:41 +05:30
# basic try-finally
@micropython.viper
def f():
try:
fail
finally:
2021-04-19 22:22:44 -07:00
print("finally")
try:
f()
except NameError:
2021-04-19 22:22:44 -07:00
print("NameError")
2023-02-01 13:38:41 +05:30
# nested try-except with try-finally
@micropython.viper
def f():
try:
try:
fail
finally:
2021-04-19 22:22:44 -07:00
print("finally")
except NameError:
2021-04-19 22:22:44 -07:00
print("NameError")
f()
2023-02-01 13:38:41 +05:30
# check that locals written to in try blocks keep their values
@micropython.viper
def f():
a = 100
try:
print(a)
a = 200
fail
except NameError:
print(a)
a = 300
print(a)
2021-04-19 22:22:44 -07:00
f()