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

23 wiersze
173 B
Python

try:
f()
except A:
g()
except:
h()
try:
f()
except A:
g()
except B as c:
h()
try:
f()
except A:
g()
except B as c:
h()
except:
i()