summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-01-18 09:31:46 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-01-18 09:31:46 (GMT)
commit35ecebe165b1f64cb94c1b947db1d0b07e6db69b (patch)
treeada7e05fe7e0128ffce4fccf5c8a66cd6f1c41e1 /Include
parent52f29591bcc642edf1b588f86a82d2558effb38b (diff)
downloadcpython-35ecebe165b1f64cb94c1b947db1d0b07e6db69b.zip
cpython-35ecebe165b1f64cb94c1b947db1d0b07e6db69b.tar.gz
cpython-35ecebe165b1f64cb94c1b947db1d0b07e6db69b.tar.bz2
Remove unused func parameter of _PyStack_UnpackDict()
Issue #29259.
Diffstat (limited to 'Include')
-rw-r--r--Include/abstract.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/abstract.h b/Include/abstract.h
index 961279d..6647be7 100644
--- a/Include/abstract.h
+++ b/Include/abstract.h
@@ -193,8 +193,7 @@ PyAPI_FUNC(int) _PyStack_UnpackDict(
Py_ssize_t nargs,
PyObject *kwargs,
PyObject ***p_stack,
- PyObject **p_kwnames,
- PyObject *func);
+ PyObject **p_kwnames);
/* Suggested size (number of positional arguments) for arrays of PyObject*
allocated on a C stack to avoid allocating memory on the heap memory. Such