Bump version to 0.9.1.
[python/dscho.git] / Include / eval.h
blob9671fc0031de09a6215e0de0654a6c86d6f2c92e
1 /***********************************************************
2 Copyright (c) 2000, BeOpen.com.
3 Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4 Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
5 All rights reserved.
7 See the file "Misc/COPYRIGHT" for information on usage and
8 redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
9 ******************************************************************/
11 /* Interface to execute compiled code */
13 #ifndef Py_EVAL_H
14 #define Py_EVAL_H
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
19 DL_IMPORT(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);
21 #ifdef __cplusplus
23 #endif
24 #endif /* !Py_EVAL_H */