diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-02-10 14:19:36 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-02-10 14:19:36 +0100 |
commit | ec7729dfc2425044ab4d508165b4fb0a00c065d0 (patch) | |
tree | 1c6ce12497bf9bd8b32ee6a4af26ddafdc40da61 /Include/eval.h | |
parent | d3f4d3fd74ca4924bbca57433ba13435c164978e (diff) | |
download | cpython-master.tar.gz |
Sorry, I didn't want to push this change before the review :-( I was pushing a
change into the 2.7 branch.
Diffstat (limited to 'Include/eval.h')
-rw-r--r-- | Include/eval.h | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/Include/eval.h b/Include/eval.h index 9541e106e2..a1c6e817dd 100644 --- a/Include/eval.h +++ b/Include/eval.h @@ -10,24 +10,14 @@ extern "C" { PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyObject *, PyObject *, PyObject *); PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyObject *co, - PyObject *globals, - PyObject *locals, - PyObject **args, int argc, - PyObject **kwds, int kwdc, - PyObject **defs, int defc, - PyObject *kwdefs, PyObject *closure); + PyObject *globals, + PyObject *locals, + PyObject **args, int argc, + PyObject **kwds, int kwdc, + PyObject **defs, int defc, + PyObject *kwdefs, PyObject *closure); #ifndef Py_LIMITED_API -PyAPI_FUNC(PyObject *) _PyEval_EvalCodeWithName( - PyObject *co, - PyObject *globals, PyObject *locals, - PyObject **args, Py_ssize_t argcount, - PyObject **kwnames, PyObject **kwargs, - Py_ssize_t kwcount, int kwstep, - PyObject **defs, Py_ssize_t defcount, - PyObject *kwdefs, PyObject *closure, - PyObject *name, PyObject *qualname); - PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args); #endif |