Staging
v0.5.1
https://github.com/python/cpython
Revision c7babad2a06b2879e13bcbd272873fc5075936e2 authored by Fred Drake on 14 October 2000, 05:39:08 UTC, committed by Fred Drake on 14 October 2000, 05:39:08 UTC
1 parent 8e850ee
Raw File
Tip revision: c7babad2a06b2879e13bcbd272873fc5075936e2 authored by Fred Drake on 14 October 2000, 05:39:08 UTC
Remove everything that is not module documentation.
Tip revision: c7babad
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