diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-07-21 22:00:38 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-07-21 22:00:38 (GMT) |
commit | e4921fec0140da8c64f9e694904a7d709de745b4 (patch) | |
tree | cbbb3c3303bc1567a09bb57cae33111f899d20b7 /Misc | |
parent | 90d07171637b9f218828265bddb1c0a63f5b9403 (diff) | |
download | cpython-e4921fec0140da8c64f9e694904a7d709de745b4.zip cpython-e4921fec0140da8c64f9e694904a7d709de745b4.tar.gz cpython-e4921fec0140da8c64f9e694904a7d709de745b4.tar.bz2 |
Issue2378: pdb would delete free variables when stepping into a class statement.
The problem was introduced by r53954, the correction is to restore the symmetry between
PyFrame_FastToLocals and PyFrame_LocalsToFast
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.6 beta 3? Core and Builtins ----------------- +- Issue #2378: An unexpected UnboundLocalError or NameError could appear when + the python debugger steps into a class statement: the free variables (local + variables defined in an outer scope) would be deleted from the outer scope. + Library ------- |