Staging
v0.5.1
https://github.com/python/cpython
Revision 79fa2b6073b67ae0351cad5b792f2be815e60c68 authored by Jeremy Hylton on 13 April 2001, 14:57:44 UTC, committed by Jeremy Hylton on 13 April 2001, 14:57:44 UTC
1 parent 23d4047
Raw File
Tip revision: 79fa2b6073b67ae0351cad5b792f2be815e60c68 authored by Jeremy Hylton on 13 April 2001, 14:57:44 UTC
Add test for SF bug #405427
Tip revision: 79fa2b6
eval.h

/* Interface to execute compiled code */

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

DL_IMPORT(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);

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