Staging
v0.5.1
https://github.com/python/cpython
Revision 782c4cf1553e46fdfbabc4bf627721a5df32ca55 authored by Jesus Cea on 13 March 2014, 16:35:32 UTC, committed by Jesus Cea on 13 March 2014, 16:35:32 UTC
1 parent 45fc871
Raw File
Tip revision: 782c4cf1553e46fdfbabc4bf627721a5df32ca55 authored by Jesus Cea on 13 March 2014, 16:35:32 UTC
Closes #20908: Memory leak in Reg2Py()
Tip revision: 782c4cf
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