STINNER Victor <[EMAIL PROTECTED]> added the comment: 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. _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue4034> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com