Staging
v0.8.1
https://github.com/python/cpython
Revision 725bfd8489e444aedd8dfd686a27ffc308657155 authored by Mark Dickinson on 03 May 2009, 20:33:40 UTC, committed by Mark Dickinson on 03 May 2009, 20:33:40 UTC
PyOS_double_to_string, and deprecate PyOS_ascii_strtod and PyOS_ascii_atof.
1 parent 75930f8
Raw File
Tip revision: 725bfd8489e444aedd8dfd686a27ffc308657155 authored by Mark Dickinson on 03 May 2009, 20:33:40 UTC
Issue #5914: Add new C-API function PyOS_string_to_double, to complement
Tip revision: 725bfd8
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