STINNER Victor <victor.stin...@haypocalc.com> 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 <rep...@bugs.python.org>
<http://bugs.python.org/issue1565525>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to