Searched refs:PyOS_string_to_double (Results 1 – 12 of 12) sorted by relevance
| /external/python/cpython2/Include/ |
| D | pystrtod.h | 15 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
| /external/python/cpython2/Doc/c-api/ |
| D | conversion.rst | 54 .. 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/ |
| D | marshal.c | 712 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()
|
| D | pystrtod.c | 336 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
|
| D | ast.c | 3352 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/ |
| D | complexobject.c | 1043 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()
|
| D | floatobject.c | 225 x = PyOS_string_to_double(s, (char **)&end, NULL); in PyFloat_FromString()
|
| /external/python/cpython2/Modules/ |
| D | stropmodule.c | 886 x = PyOS_string_to_double(s, &end, PyExc_OverflowError); in strop_atof()
|
| D | _json.c | 1379 double d = PyOS_string_to_double(PyString_AS_STRING(numstr), in _match_number_str()
|
| D | cPickle.c | 3602 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()
|
| /external/python/cpython2/Doc/whatsnew/ |
| D | 2.7.rst | 2129 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/ |
| D | NEWS | 8849 - Add new C-API function PyOS_string_to_double, and deprecated PyOS_ascii_atof
|