mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 18:30:27 +02:00
12 lines
124 B
Python
12 lines
124 B
Python
def f():
|
|
raise
|
|
def g():
|
|
raise 1
|
|
def h():
|
|
raise 1 from 2
|
|
def i():
|
|
try:
|
|
f()
|
|
except:
|
|
raise
|