Staging
v0.5.1
https://github.com/python/cpython
Revision 6accb988a1822dc2927346ae4819aff8cc876b98 authored by Benjamin Peterson on 02 March 2009, 22:50:25 UTC, committed by Benjamin Peterson on 02 March 2009, 22:50:25 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r70107 | benjamin.peterson | 2009-03-02 16:41:42 -0600 (Mon, 02 Mar 2009) | 1 line

  give httplib.IncompleteRead a more sane repr #4308
........
1 parent a4f52b1
Raw File
Tip revision: 6accb988a1822dc2927346ae4819aff8cc876b98 authored by Benjamin Peterson on 02 March 2009, 22:50:25 UTC
Merged revisions 70107 via svnmerge from
Tip revision: 6accb98
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