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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, jcea, vstinner
Date 2008-09-18.16:10:20
SpamBayes Score 9.942311e-09
Marked as misclassified No
Message-id <1221754222.53.0.501669963188.issue3885@psf.upfronthosting.co.za>
In-reply-to
Content
> > Not only in these functions, but anywhere "dummy=" is followed by a
> > Py_XDECREF(dummy);
> 
> Please, clarify this. I don't see your point.

If dummy is NULL, a pending exception has been set (with PyErr_SetString
or another similar function). If you simply ignore this, your function
will return a valid object, but PyErr_Occurred() returns True. This is
not correct and will fail in subtle ways (like with gc.collect()); in
debug mode, a message "XXX undetected error" is printed.
You must either clear the exception, or return NULL from your function.
History
Date User Action Args
2008-09-18 16:10:22amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, jcea, vstinner
2008-09-18 16:10:22amaury.forgeotdarcsetmessageid: <1221754222.53.0.501669963188.issue3885@psf.upfronthosting.co.za>
2008-09-18 16:10:21amaury.forgeotdarclinkissue3885 messages
2008-09-18 16:10:21amaury.forgeotdarccreate