Staging
v0.5.1
https://github.com/python/cpython
Revision a65e2afe804743332b37234d66c7fe0789da760d authored by Ezio Melotti on 02 August 2010, 19:56:05 UTC, committed by Ezio Melotti on 02 August 2010, 19:56:05 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79165 | florent.xicluna | 2010-03-21 03:14:24 +0200 (Sun, 21 Mar 2010) | 2 lines

  #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper.
........
1 parent edabc7b
Raw File
Tip revision: a65e2afe804743332b37234d66c7fe0789da760d authored by Ezio Melotti on 02 August 2010, 19:56:05 UTC
Merged revisions 79165 via svnmerge from
Tip revision: a65e2af
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 *closure);

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

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