mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 18:00:48 +02:00
16 lines
104 B
Python
16 lines
104 B
Python
try:
|
|
f()
|
|
except:
|
|
g()
|
|
else:
|
|
h()
|
|
|
|
try:
|
|
f()
|
|
except:
|
|
g()
|
|
else:
|
|
h()
|
|
finally:
|
|
i()
|