STINNER Victor <[email protected]> added the comment:
Greg Hazel> But a list of strings is not re-raisable
Do you need the original traceback? Why not only raising the exception? Eg.
----
import sys
try:
raise Exception("hm!")
except:
t, v, tb = sys.exc_info()
raise v
----
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue1565525>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com