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 Digitalxero, IROV, amaury.forgeotdarc, temoto
Date 2011-02-27.09:53:24
SpamBayes Score 0.021832779
Marked as misclassified No
Message-id <1298800405.63.0.123023675802.issue10880@psf.upfronthosting.co.za>
In-reply-to
Content
This test is wrong::
   if (!PyBool_Check(test_var) && test_var == Py_False)
the second part is never executed.
   if (test_var != Py_False)
is enough to test the return value.
History
Date User Action Args
2011-02-27 09:53:25amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, temoto, Digitalxero, IROV
2011-02-27 09:53:25amaury.forgeotdarcsetmessageid: <1298800405.63.0.123023675802.issue10880@psf.upfronthosting.co.za>
2011-02-27 09:53:24amaury.forgeotdarclinkissue10880 messages
2011-02-27 09:53:24amaury.forgeotdarccreate