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 Mark.Shannon, amaury.forgeotdarc, docs@python, georg.brandl, larry, loewis, pitrou
Date 2013-04-08.16:59:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1365440348.91.0.352715526148.issue17589@psf.upfronthosting.co.za>
In-reply-to
Content
There are some extension modules (pytables) that do
  return Py_INREF(x), x;
and Py_RETURN_NONE is also defined with a comma expression.

Oh, and Cython:
#define __Pyx_PyBool_FromLong(b) ((b) ? (Py_INCREF(Py_True), Py_True) : (Py_INCREF(Py_False), Py_False))
History
Date User Action Args
2013-04-08 16:59:08amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, loewis, georg.brandl, pitrou, larry, docs@python, Mark.Shannon
2013-04-08 16:59:08amaury.forgeotdarcsetmessageid: <1365440348.91.0.352715526148.issue17589@psf.upfronthosting.co.za>
2013-04-08 16:59:08amaury.forgeotdarclinkissue17589 messages
2013-04-08 16:59:08amaury.forgeotdarccreate