Staging
v0.5.1
https://github.com/python/cpython
Revision 28626de45201fcfc575f6ffcc6af849673f04476 authored by Hirokazu Yamamoto on 02 February 2009, 09:46:30 UTC, committed by Hirokazu Yamamoto on 02 February 2009, 09:46:30 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r69202 | hirokazu.yamamoto | 2009-02-02 18:15:41 +0900 | 9 lines

  Merged revisions 69200 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r69200 | hirokazu.yamamoto | 2009-02-02 17:01:17 +0900 | 1 line

    Set native svn:eol-style property for text files.
  ........
................
1 parent c2c707c
Raw File
Tip revision: 28626de45201fcfc575f6ffcc6af849673f04476 authored by Hirokazu Yamamoto on 02 February 2009, 09:46:30 UTC
Merged revisions 69202 via svnmerge from
Tip revision: 28626de
eval.h

/* Interface to execute compiled code */

#ifndef Py_EVAL_H
#define Py_EVAL_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *);

PyAPI_FUNC(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co,
					PyObject *globals,
					PyObject *locals,
					PyObject **args, int argc,
					PyObject **kwds, int kwdc,
					PyObject **defs, int defc,
					PyObject *kwdefs, PyObject *closure);

PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);

#ifdef __cplusplus
}
#endif
#endif /* !Py_EVAL_H */
back to top