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 maru
Recipients benjamin.peterson, maru, mproeller
Date 2009-04-01.22:49:24
SpamBayes Score 7.637893e-06
Marked as misclassified No
Message-id <1238626168.57.0.0696135800544.issue5215@psf.upfronthosting.co.za>
In-reply-to
Content
Modifications to the f_locals dict are only saved at the end of
traceback, and each traceback function was using the f_locals accessor
that returns the dict state as of the start of traceback.  The provided
patch caches f_locals on setup and ensures that all traceback functions
share that cached dict, ensuring that modifications are no longer
overwritten by a function using the unmodified dict.
History
Date User Action Args
2009-04-01 22:49:28marusetrecipients: + maru, benjamin.peterson, mproeller
2009-04-01 22:49:28marusetmessageid: <1238626168.57.0.0696135800544.issue5215@psf.upfronthosting.co.za>
2009-04-01 22:49:27marulinkissue5215 messages
2009-04-01 22:49:26marucreate