- Got rid of newmodule.c
[python/dscho.git] / Include / eval.h
blobf9334a75f073a83816eafdf1ea98a0d6636f3588
2 /* Interface to execute compiled code */
4 #ifndef Py_EVAL_H
5 #define Py_EVAL_H
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 DL_IMPORT(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);
12 DL_IMPORT(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);
20 #ifdef __cplusplus
22 #endif
23 #endif /* !Py_EVAL_H */