mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736)
This commit is contained in:
parent
4a934d490f
commit
81524022d0
5 changed files with 15 additions and 15 deletions
|
@ -1310,7 +1310,7 @@ deque_traverse(dequeobject *deque, visitproc visit, void *arg)
|
|||
}
|
||||
|
||||
static PyObject *
|
||||
deque_reduce(dequeobject *deque)
|
||||
deque_reduce(dequeobject *deque, PyObject *Py_UNUSED(ignored))
|
||||
{
|
||||
PyObject *dict, *it;
|
||||
_Py_IDENTIFIER(__dict__);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue