summaryrefslogtreecommitdiff
path: root/Include/abstract.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-08-19 17:12:23 +0200
committerVictor Stinner <victor.stinner@gmail.com>2016-08-19 17:12:23 +0200
commit06f5b1d3dd2314af2e1f97e8da45bb28b0969f5e (patch)
tree714f632dde66c506b2c13ddb92a3961c1f09b03a /Include/abstract.h
parentb1b56619853134ba7bf2ed2a0c0ad1d030ea8d03 (diff)
downloadcpython-06f5b1d3dd2314af2e1f97e8da45bb28b0969f5e.tar.gz
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 280402cae3..f67c6b2159 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,