summaryrefslogtreecommitdiffstats
path: root/Include/ceval.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/ceval.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/ceval.h')
-rw-r--r--Include/ceval.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/ceval.h b/Include/ceval.h
index d194044..73b4ca6 100644
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -8,7 +8,7 @@ extern "C" {
/* Interface to random parts in ceval.c */
PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
- PyObject *, PyObject *, PyObject *);
+ PyObject *func, PyObject *args, PyObject *kwargs);
/* Inline this */
#define PyEval_CallObject(func,arg) \