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: instancemethod_descr_get() lacks an INCREF
Type: crash Stage:
Components: Interpreter Core Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, scoder
Priority: normal Keywords: patch

Created on 2008-05-25 09:09 by scoder, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
instancemethod-fix.patch scoder, 2008-05-25 09:09 Patch that adds the missing INCREF
Messages (2)
msg67334 - (view) Author: Stefan Behnel (scoder) * (Python committer) Date: 2008-05-25 09:09
Here is a fix for Objects/classobject.c in Py3.0a5 that fixes a ref
count crash for classmethods.
msg67336 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-05-25 09:24
Thanks, fixed in r63620.
History
Date User Action Args
2022-04-11 14:56:34adminsetgithub: 47213
2008-05-25 09:24:46georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg67336
nosy: + georg.brandl
2008-05-25 09:09:29scodercreate