Issue 812353: a Py_DECREF() too much (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/39299

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:22 admin set github: 39299
2003-09-25 10:23:32 arigo create