Staging
v0.5.1
https://github.com/python/cpython
Revision 592563292c7d0e2276c7636f1acf95a43db4668b authored by Ezio Melotti on 30 July 2011, 18:25:22 UTC, committed by Ezio Melotti on 30 July 2011, 18:25:22 UTC
1 parent 497cd65
Raw File
Tip revision: 592563292c7d0e2276c7636f1acf95a43db4668b authored by Ezio Melotti on 30 July 2011, 18:25:22 UTC
#12531: Fix spaces and markup.
Tip revision: 5925632
eval.h

/* Interface to execute compiled code */

#ifndef Py_EVAL_H
#define Py_EVAL_H
#ifdef __cplusplus
extern "C" {
#endif

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);

#ifndef Py_LIMITED_API
PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
#endif

#ifdef __cplusplus
}
#endif
#endif /* !Py_EVAL_H */
back to top