diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-11-30 11:10:54 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-11-30 11:10:54 (GMT) |
commit | 8be1c39eb3416e9d85c7e3ccd4794969588c8030 (patch) | |
tree | fb2988507309c3e4ad096121aba965695c1ca7ce /Include/ceval.h | |
parent | ebea9988e0808cab8736f100fc480d536e68f930 (diff) | |
download | cpython-8be1c39eb3416e9d85c7e3ccd4794969588c8030.zip cpython-8be1c39eb3416e9d85c7e3ccd4794969588c8030.tar.gz cpython-8be1c39eb3416e9d85c7e3ccd4794969588c8030.tar.bz2 |
Backed out changeset 7efddbf1aa70
Diffstat (limited to 'Include/ceval.h')
-rw-r--r-- | Include/ceval.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index 5dface2..4222969 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 |