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 xdegaye
Recipients xdegaye
Date 2014-07-08.11:01:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404817320.2.0.605121131918.issue21938@psf.upfronthosting.co.za>
In-reply-to
Content
The Py_XDECREF statement in gen_iternext() at Objects/genobject.c is not needed since val is NULL (may be optimized out by the compiler).
Actually, the whole function could be written as:

    return gen_send_ex(gen, NULL, 0);
History
Date User Action Args
2014-07-08 11:02:00xdegayesetrecipients: + xdegaye
2014-07-08 11:02:00xdegayesetmessageid: <1404817320.2.0.605121131918.issue21938@psf.upfronthosting.co.za>
2014-07-08 11:02:00xdegayelinkissue21938 messages
2014-07-08 11:01:59xdegayecreate