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 rhettinger
Recipients benjamin.peterson, eric.smith, georg.brandl, larry, loewis, mark.dickinson, python-dev, rhettinger, serhiy.storchaka
Date 2012-05-06.00:15:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336263335.26.0.11458004972.issue14705@psf.upfronthosting.co.za>
In-reply-to
Content
I would have expected a bool parse code to insist on a boolean, so that:

    int x;
    PyArg_ParseTupleAndKeywords(args, kwds, "p:func", &x);

would behave the same as:

    PyObject  *o;
    int x;
    PyArg_ParseTupleAndKeywords(args, kwds, "O!:func", &PyBool_Type, &o);
    x = o == Py_True;
History
Date User Action Args
2012-05-06 00:15:35rhettingersetrecipients: + rhettinger, loewis, georg.brandl, mark.dickinson, larry, eric.smith, benjamin.peterson, python-dev, serhiy.storchaka
2012-05-06 00:15:35rhettingersetmessageid: <1336263335.26.0.11458004972.issue14705@psf.upfronthosting.co.za>
2012-05-06 00:15:34rhettingerlinkissue14705 messages
2012-05-06 00:15:34rhettingercreate