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