Home
last modified time | relevance | path

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

/third_party/python/Include/
Dpystrtod.h9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/third_party/python/Objects/
Dcomplexobject.c753 z = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
766 y = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
Dfloatobject.c165 x = PyOS_string_to_double(s, (char **)&end, NULL); in float_from_string_inner()
/third_party/python/Doc/c-api/
Dconversion.rst50 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
/third_party/python/Python/
Dpystrtod.c338 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
Dmarshal.c874 return PyOS_string_to_double(buf, NULL, NULL); in r_float_str()
/third_party/python/Doc/data/
Dstable_abi.dat459 function,PyOS_string_to_double,3.2,
/third_party/python/PC/
Dpython3dll.c486 EXPORT_FUNC(PyOS_string_to_double)
/third_party/python/Parser/
Dpegen.c1056 compl.imag = PyOS_string_to_double(s, (char **)&end, NULL); in parsenumber_raw()
1062 dx = PyOS_string_to_double(s, NULL, NULL); in parsenumber_raw()
/third_party/python/Doc/whatsnew/
D3.1.rst507 * Added a new :c:func:`PyOS_string_to_double` function to replace the
D2.7.rst2153 a new :c:func:`PyOS_string_to_double` function was added. The old
2541 * Use the new :c:func:`PyOS_string_to_double` function instead of the old
/third_party/python/Misc/
Dstable_abi.txt1023 function PyOS_string_to_double
DHISTORY12872 PyOS_string_to_double instead. See issue #5835 for the original deprecations.
14829 - Issue #5914: Add new C API function PyOS_string_to_double, and
/third_party/python/Modules/
D_testcapimodule.c3034 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
3043 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
D_pickle.c5391 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()