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 skrah
Recipients larry, skrah
Date 2013-12-13.14:43:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386945786.12.0.418187279765.issue19976@psf.upfronthosting.co.za>
In-reply-to
Content
I was just reading the _pickle sources and it appears that AC does not
generate a second arg for METH_NOARGS functions:

#define _PICKLE_PICKLERMEMOPROXY_CLEAR_METHODDEF    \
    {"clear", (PyCFunction)_pickle_PicklerMemoProxy_clear, METH_NOARGS, _pickle_PicklerMemoProxy_clear__doc__},

static PyObject *
_pickle_PicklerMemoProxy_clear(PicklerMemoProxyObject *self)


While this is a common occurrence in the source tree, the consensus
in #15402 was that the unused second arg should be present, e.g.:

msg166250
msg166405
History
Date User Action Args
2013-12-13 14:43:06skrahsetrecipients: + skrah, larry
2013-12-13 14:43:06skrahsetmessageid: <1386945786.12.0.418187279765.issue19976@psf.upfronthosting.co.za>
2013-12-13 14:43:06skrahlinkissue19976 messages
2013-12-13 14:43:05skrahcreate