summaryrefslogtreecommitdiff
path: root/Include/ceval.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-11-30 12:10:54 +0100
committerVictor Stinner <victor.stinner@gmail.com>2016-11-30 12:10:54 +0100
commit8be1c39eb3416e9d85c7e3ccd4794969588c8030 (patch)
treefb2988507309c3e4ad096121aba965695c1ca7ce /Include/ceval.h
parentebea9988e0808cab8736f100fc480d536e68f930 (diff)
downloadcpython-git-8be1c39eb3416e9d85c7e3ccd4794969588c8030.tar.gz
Backed out changeset 7efddbf1aa70
Diffstat (limited to 'Include/ceval.h')
-rw-r--r--Include/ceval.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/ceval.h b/Include/ceval.h
index 5dface2911..42229696ff 100644
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -14,10 +14,10 @@ PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords(
#define PyEval_CallObject(func,arg) \
PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)
-PyAPI_FUNC(PyObject *) PyEval_CallFunction(PyObject *func,
+PyAPI_FUNC(PyObject *) PyEval_CallFunction(PyObject *obj,
const char *format, ...);
PyAPI_FUNC(PyObject *) PyEval_CallMethod(PyObject *obj,
- const char *method,
+ const char *methodname,
const char *format, ...);
#ifndef Py_LIMITED_API