blob: 99c9eeafaa322f95c2ce858f5f19ab9cea6271bc [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 Rossum5799b521995-01-04 19:06:22 +00008Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
9The Netherlands.
Guido van Rossumff4949e1992-08-05 19:58:53 +000010
11 All Rights Reserved
12
Guido van Rossumfd71b9e2000-06-30 23:50:40 +000013Copyright (c) 2000, BeOpen.com.
14Copyright (c) 1995-2000, Corporation for National Research Initiatives.
15Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
16All rights reserved.
Guido van Rossumff4949e1992-08-05 19:58:53 +000017
Guido van Rossumfd71b9e2000-06-30 23:50:40 +000018See the file "Misc/COPYRIGHT" for information on usage and
19redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossumff4949e1992-08-05 19:58:53 +000020
21******************************************************************/
22
23/* Interface to execute compiled code */
24
Guido van Rossum43466ec1998-12-04 18:48:25 +000025DL_IMPORT(PyObject *) PyEval_EvalCode Py_PROTO((PyCodeObject *, PyObject *, PyObject *));
Guido van Rossuma3309961993-07-28 09:05:47 +000026
27#ifdef __cplusplus
28}
29#endif
30#endif /* !Py_EVAL_H */