circuitpython/tests/misc/sys_exc_info.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
398 B
Python
Raw Normal View History

import sys
2021-03-15 09:57:36 -04:00
try:
sys.exc_info
except:
print("SKIP")
raise SystemExit
2021-03-15 09:57:36 -04:00
def f():
print(sys.exc_info()[0:2])
2021-03-15 09:57:36 -04:00
try:
2021-03-15 09:57:36 -04:00
raise ValueError("value", 123)
except:
print(sys.exc_info()[0:2])
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".