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 ilblackdragon
Recipients benjamin.peterson, brett.cannon, dmalcolm, ilblackdragon, jcea, larry
Date 2013-03-18.06:46:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1363589164.67.0.213647608131.issue17206@psf.upfronthosting.co.za>
In-reply-to
Content
Additionally, in macros Py_XINCREF and Py_XDECREF we've took an opportunity to increase readability by changing expression:
> if (item == NULL) ; else action(item);
to more natural inverted condition:
> if (item != NULL) action(item);

There is a chance that there may be a reason for this form of expression, so let me know if this is an issue.
History
Date User Action Args
2013-03-18 06:46:04ilblackdragonsetrecipients: + ilblackdragon, brett.cannon, jcea, larry, benjamin.peterson, dmalcolm
2013-03-18 06:46:04ilblackdragonsetmessageid: <1363589164.67.0.213647608131.issue17206@psf.upfronthosting.co.za>
2013-03-18 06:46:04ilblackdragonlinkissue17206 messages
2013-03-18 06:46:04ilblackdragoncreate