mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 09:50:15 +01:00
26 lines
429 B
Python
26 lines
429 B
Python
import sys
|
|
|
|
try:
|
|
sys.exc_info
|
|
except:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
|
|
def f():
|
|
e = sys.exc_info()
|
|
print(e[0], e[1])
|
|
|
|
|
|
try:
|
|
raise ValueError("value", 123)
|
|
except:
|
|
print(sys.exc_info()[0], sys.exc_info()[1])
|
|
f()
|
|
|
|
# Outside except block, sys.exc_info() should be back to None's
|
|
f()
|
|
|
|
# Recursive except blocks are not handled - just don't
|
|
# use exc_info() at all, use explicit variables in "except".
|