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 benjamin.peterson, ghazel, vstinner
Date 2008-10-14.23:33:41
SpamBayes Score 3.2926044e-05
Marked as misclassified No
Message-id <1224027222.49.0.0937037889175.issue4034@psf.upfronthosting.co.za>
In-reply-to
Content
My patch causes a crash with:

import sys
try:
    raise Exception("hm!")
except:
    t, v, tb = sys.exc_info()
    tb.tb_frame = {}
    raise t, v, tb

Change tb.tb_frame value is not a good idea. It's better to clear 
locals/globals: see msg74329.
History
Date User Action Args
2008-10-14 23:33:42vstinnersetrecipients: + vstinner, ghazel, benjamin.peterson
2008-10-14 23:33:42vstinnersetmessageid: <1224027222.49.0.0937037889175.issue4034@psf.upfronthosting.co.za>
2008-10-14 23:33:41vstinnerlinkissue4034 messages
2008-10-14 23:33:41vstinnercreate