Staging
v0.5.1
https://github.com/python/cpython
Revision 6c3767445cf1e595d1729611284216b87f96e088 authored by Jesse Noller on 21 November 2009, 14:01:56 UTC, committed by Jesse Noller on 21 November 2009, 14:01:56 UTC
1 parent c4920e8
Raw File
Tip revision: 6c3767445cf1e595d1729611284216b87f96e088 authored by Jesse Noller on 21 November 2009, 14:01:56 UTC
issue5738: The distribution example was confusing, and out of date. It's too large to include inline in the docs as well. It belongs in an addons module outside the stdlib. Removing.
Tip revision: 6c37674
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