summaryrefslogtreecommitdiffstats
path: root/Include/abstract.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-08-19 15:12:23 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-08-19 15:12:23 (GMT)
commit8a31c820930536ffe3b44d99252ba9f3bb98ce58 (patch)
treed5952e59fdcb67329576d4ce63b258e844716546 /Include/abstract.h
parent0d1a799343dd956c8e4a1d6e0ac3fa9ac007704e (diff)
downloadcpython-8a31c820930536ffe3b44d99252ba9f3bb98ce58.zip
cpython-8a31c820930536ffe3b44d99252ba9f3bb98ce58.tar.gz
cpython-8a31c820930536ffe3b44d99252ba9f3bb98ce58.tar.bz2
Fix PyObject_Call() parameter names
Issue #27128: arg=>args, kw=>kwargs. Same change for PyEval_CallObjectWithKeywords().
Diffstat (limited to 'Include/abstract.h')
-rw-r--r--Include/abstract.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/abstract.h b/Include/abstract.h
index 280402c..f67c6b2 100644
--- a/Include/abstract.h
+++ b/Include/abstract.h
@@ -264,7 +264,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
*/
PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object,
- PyObject *args, PyObject *kw);
+ PyObject *args, PyObject *kwargs);
#ifndef Py_LIMITED_API
PyAPI_FUNC(PyObject*) _PyStack_AsTuple(PyObject **stack,