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.

classification
Title: a Py_DECREF() too much
Type: Stage:
Components: Interpreter Core Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jhylton Nosy List: arigo, jhylton, rhettinger
Priority: normal Keywords:

Created on 2003-09-25 10:23 by arigo, last changed 2022-04-10 16:11 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
y.txt arigo, 2003-09-25 10:23 patch
Messages (3)
msg18356 - (view) Author: Armin Rigo (arigo) * (Python committer) Date: 2003-09-25 10:23
frameobject.c:PyFrame_FastToLocals() has a
Py_DECREF(locals) that shouldn't be done. It didn't get
noticed because it is in an unprobable path.
msg18357 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2003-09-26 05:05
Logged In: YES 
user_id=80475

Jeremy, this is your code fragment.
msg18358 - (view) Author: Jeremy Hylton (jhylton) (Python triager) Date: 2003-10-21 18:14
Logged In: YES 
user_id=31392

Fixed in rev 2.76 of frameobject.c.
History
Date User Action Args
2022-04-10 16:11:22adminsetgithub: 39299
2003-09-25 10:23:32arigocreate