Message74783
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. |
|
Date |
User |
Action |
Args |
2008-10-14 23:33:42 | vstinner | set | recipients:
+ vstinner, ghazel, benjamin.peterson |
2008-10-14 23:33:42 | vstinner | set | messageid: <1224027222.49.0.0937037889175.issue4034@psf.upfronthosting.co.za> |
2008-10-14 23:33:41 | vstinner | link | issue4034 messages |
2008-10-14 23:33:41 | vstinner | create | |
|