diff options
Diffstat (limited to 'Include/eval.h')
-rw-r--r-- | Include/eval.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Include/eval.h b/Include/eval.h index 2a45009..f9334a7 100644 --- a/Include/eval.h +++ b/Include/eval.h @@ -9,6 +9,14 @@ extern "C" { DL_IMPORT(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *); +DL_IMPORT(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co, + PyObject *globals, + PyObject *locals, + PyObject **args, int argc, + PyObject **kwds, int kwdc, + PyObject **defs, int defc, + PyObject *closure); + #ifdef __cplusplus } #endif |