This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients akuchling, ghazel, loewis, tim.peters, vstinner
Date 2009-01-14.01:12:48
SpamBayes Score 0.056293845
Marked as misclassified No
Message-id <200901140212.41667.victor.stinner@haypocalc.com>
In-reply-to <1231893657.92.0.481572649422.issue1565525@psf.upfronthosting.co.za>
Content
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
----
History
Date User Action Args
2009-01-14 01:12:50vstinnersetrecipients: + vstinner, tim.peters, loewis, akuchling, ghazel
2009-01-14 01:12:48vstinnerlinkissue1565525 messages
2009-01-14 01:12:48vstinnercreate