Staging
v0.5.1
https://github.com/python/cpython
Revision 9103ec5afd105e072e385ca098b876dec868b27d authored by Fred Drake on 13 November 2004, 01:20:24 UTC, committed by Fred Drake on 13 November 2004, 01:20:24 UTC
1 parent aee4da6
Raw File
Tip revision: 9103ec5afd105e072e385ca098b876dec868b27d authored by Fred Drake on 13 November 2004, 01:20:24 UTC
avoid the inane markup generated by LaTeX2HTML for \LaTeX; that simply
Tip revision: 9103ec5
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(PyCodeObject *, PyObject *, PyObject *);

PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,
					PyObject *globals,
					PyObject *locals,
					PyObject **args, int argc,
					PyObject **kwds, int kwdc,
					PyObject **defs, int defc,
					PyObject *closure);

PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);

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