blob: 9671fc0031de09a6215e0de0654a6c86d6f2c92e [file] [log] [blame]
Guido van Rossumff4949e1992-08-05 19:58:53 +00001/***********************************************************
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00002Copyright (c) 2000, BeOpen.com.
3Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
5All rights reserved.
Guido van Rossumff4949e1992-08-05 19:58:53 +00006
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00007See the file "Misc/COPYRIGHT" for information on usage and
8redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossumff4949e1992-08-05 19:58:53 +00009******************************************************************/
10
11/* Interface to execute compiled code */
12
Fred Drake5eb6d4e2000-07-08 23:37:28 +000013#ifndef Py_EVAL_H
14#define Py_EVAL_H
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19DL_IMPORT(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);
Guido van Rossuma3309961993-07-28 09:05:47 +000020
21#ifdef __cplusplus
22}
23#endif
24#endif /* !Py_EVAL_H */