Staging
v0.5.1
https://github.com/python/cpython
Revision 6f7fad16bc2799c3db0e96d4c4ad35676d59251c authored by Benjamin Peterson on 21 November 2008, 22:58:57 UTC, committed by Benjamin Peterson on 21 November 2008, 22:58:57 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67320 | benjamin.peterson | 2008-11-21 16:27:24 -0600 (Fri, 21 Nov 2008) | 4 lines

  don't segfault when \N escapes are used and unicodedata fails to load

  Fixes #4367
........
1 parent 4a98a2a
Raw File
Tip revision: 6f7fad16bc2799c3db0e96d4c4ad35676d59251c authored by Benjamin Peterson on 21 November 2008, 22:58:57 UTC
Merged revisions 67320 via svnmerge from
Tip revision: 6f7fad1
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