micropython/tests/bytecode/mp-tests/try6.py

16 lines
104 B
Python
Raw Normal View History

try:
f()
except:
g()
else:
h()
try:
f()
except:
g()
else:
h()
finally:
i()