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 vstinner
Recipients vstinner
Date 2010-07-28.20:53:44
SpamBayes Score 0.043510005
Marked as misclassified No
Message-id <1280350428.05.0.23614798147.issue9402@psf.upfronthosting.co.za>
In-reply-to
Content
PyObject_DEL() should not be used to destroy an object because it will break the linked list of allocated objects using in pydebug mode to detect bugs. pyexpat should use Py_DECREF() instead of PyObject_DEL() to destroy an object.

Attached patch fixes that.

See #3299 for the whole story.
History
Date User Action Args
2010-07-28 20:53:48vstinnersetrecipients: + vstinner
2010-07-28 20:53:48vstinnersetmessageid: <1280350428.05.0.23614798147.issue9402@psf.upfronthosting.co.za>
2010-07-28 20:53:46vstinnerlinkissue9402 messages
2010-07-28 20:53:46vstinnercreate