Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / src / nas,5.n2.os.2 / lib / python / include / python2.4 / eval.h
CommitLineData
86530b38
AT
1#ifndef Py_EVAL_H
2#define Py_EVAL_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);
8
9PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,
10 PyObject *globals,
11 PyObject *locals,
12 PyObject **args, int argc,
13 PyObject **kwds, int kwdc,
14 PyObject **defs, int defc,
15 PyObject *closure);
16
17PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
18
19#ifdef __cplusplus
20}
21#endif
22#endif /* !Py_EVAL_H */