python-2.7.6/include/eval.h Source File

eval.h
Go to the documentation of this file.
1 
2 /* Interface to execute compiled code */
3 
4 #ifndef Py_EVAL_H
5 #define Py_EVAL_H
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);
11 
12 PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,
13  PyObject *globals,
14  PyObject *locals,
15  PyObject **args, int argc,
16  PyObject **kwds, int kwdc,
17  PyObject **defs, int defc,
18  PyObject *closure);
19 
20 PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 #endif /* !Py_EVAL_H */
PyObject PyObject PyObject PyObject PyObject int PyObject int PyObject int PyObject * closure
Definition: eval.h:13
PyObject PyObject PyObject PyObject PyObject int PyObject int PyObject int defc
Definition: eval.h:13
PyObject PyObject PyObject PyObject PyObject int PyObject int kwdc
Definition: eval.h:13
PyObject PyObject PyObject PyObject PyObject ** args
Definition: eval.h:13
PyObject * co
Definition: import.h:11
PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *
PyObject PyObject PyObject PyObject PyObject int PyObject ** kwds
Definition: eval.h:13
PyObject PyObject PyObject PyObject PyObject int argc
Definition: eval.h:13
PyObject PyObject PyObject * globals
Definition: eval.h:13
PyObject PyObject PyObject PyObject PyObject int PyObject int PyObject ** defs
Definition: eval.h:13
PyObject PyObject PyObject PyObject * locals
Definition: eval.h:13