mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
METH_NOARGS functions need only a single argument but they are cast into a PyCFunction, which takes two arguments. This triggers an invalid function cast warning in gcc8 due to the argument mismatch. Fix this by adding a dummy unused argument.
This commit is contained in:
parent
9f3535c9cd
commit
55edd0c185
56 changed files with 406 additions and 406 deletions
|
@ -1040,7 +1040,7 @@ itemgetter_repr(itemgetterobject *ig)
|
|||
}
|
||||
|
||||
static PyObject *
|
||||
itemgetter_reduce(itemgetterobject *ig)
|
||||
itemgetter_reduce(itemgetterobject *ig, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
if (ig->nitems == 1)
|
||||
return Py_BuildValue("O(O)", Py_TYPE(ig), ig->item);
|
||||
|
@ -1382,7 +1382,7 @@ attrgetter_repr(attrgetterobject *ag)
|
|||
}
|
||||
|
||||
static PyObject *
|
||||
attrgetter_reduce(attrgetterobject *ag)
|
||||
attrgetter_reduce(attrgetterobject *ag, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
PyObject *attrstrings = attrgetter_args(ag);
|
||||
if (attrstrings == NULL)
|
||||
|
@ -1615,7 +1615,7 @@ done:
|
|||
}
|
||||
|
||||
static PyObject *
|
||||
methodcaller_reduce(methodcallerobject *mc)
|
||||
methodcaller_reduce(methodcallerobject *mc, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
PyObject *newargs;
|
||||
if (!mc->kwds || PyDict_GET_SIZE(mc->kwds) == 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue