Staging
v0.5.1
https://github.com/python/cpython
Revision f502c73012c931cd23bc1df6af7af0cc6410fe6c authored by Guido van Rossum on 13 June 2001, 15:15:02 UTC, committed by Guido van Rossum on 13 June 2001, 15:15:02 UTC
1 parent 5cf87aa
Raw File
Tip revision: f502c73012c931cd23bc1df6af7af0cc6410fe6c authored by Guido van Rossum on 13 June 2001, 15:15:02 UTC
Bring SRE up do date with Python 2.1
Tip revision: f502c73
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