Home
last modified time | relevance | path

Searched refs:PyOS_string_to_double (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Include/
Dpystrtod.h15 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/external/python/cpython2/Doc/c-api/
Dconversion.rst54 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
102 Use :c:func:`PyOS_string_to_double` instead.
165 Use :c:func:`PyOS_string_to_double` instead.
/external/python/cpython2/Python/
Dmarshal.c712 dx = PyOS_string_to_double(buf, NULL, NULL); in r_object()
753 c.real = PyOS_string_to_double(buf, NULL, NULL); in r_object()
766 c.imag = PyOS_string_to_double(buf, NULL, NULL); in r_object()
Dpystrtod.c336 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
Dast.c3352 complex.imag = PyOS_string_to_double(s, (char **)&end, NULL); in parsenumber()
3360 dx = PyOS_string_to_double(s, NULL, NULL); in parsenumber()
/external/python/cpython2/Objects/
Dcomplexobject.c1043 z = PyOS_string_to_double(s, &end, NULL); in complex_subtype_from_string()
1056 y = PyOS_string_to_double(s, &end, NULL); in complex_subtype_from_string()
Dfloatobject.c225 x = PyOS_string_to_double(s, (char **)&end, NULL); in PyFloat_FromString()
/external/python/cpython2/Modules/
Dstropmodule.c886 x = PyOS_string_to_double(s, &end, PyExc_OverflowError); in strop_atof()
D_json.c1379 double d = PyOS_string_to_double(PyString_AS_STRING(numstr), in _match_number_str()
DcPickle.c3602 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()
/external/python/cpython2/Doc/whatsnew/
D2.7.rst2129 a new :c:func:`PyOS_string_to_double` function was added. The old
2511 * Use the new :c:func:`PyOS_string_to_double` function instead of the old
/external/python/cpython2/Misc/
DNEWS8849 - Add new C-API function PyOS_string_to_double, and deprecated PyOS_ascii_atof