mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 18:00:48 +02:00
23 lines
173 B
Python
23 lines
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()
|