Guido has mentioned [1] that since exceptions will be growing a
__traceback__ attribute in Python 3, it should be possible to remove
sys.exc_info(). In addition, PEP 3100 mentions the removal of
sys.exc_{type,value,traceback}. With that in mind, is there a reason
to keep the exc_{type,value,traceback} fields on PyThreadState
structs? Is there a reason why these couldn't be consolidated into a
single PyThreadState->exception field in Python 3?Thanks, Collin Winter [1] - http://mail.python.org/pipermail/python-3000/2007-January/005385.html _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
