mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 04:25:34 -04:00
20 lines
283 B
Python
20 lines
283 B
Python
# Reraising last exception with raise w/o args
|
|
|
|
def f():
|
|
try:
|
|
raise ValueError("val", 3)
|
|
except:
|
|
raise
|
|
|
|
try:
|
|
f()
|
|
except ValueError as e:
|
|
print(repr(e))
|
|
|
|
|
|
# Can reraise only in except block
|
|
try:
|
|
raise
|
|
except RuntimeError:
|
|
print("RuntimeError")
|