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.c775 z = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
788 y = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
Dfloatobject.c184 x = PyOS_string_to_double(s, (char **)&end, NULL); in float_from_string_inner()
/third_party/python/Parser/
Dpegen.c589 compl.imag = PyOS_string_to_double(s, (char **)&end, NULL); in parsenumber_raw()
595 dx = PyOS_string_to_double(s, NULL, NULL); in parsenumber_raw()
/third_party/python/Doc/c-api/
Dconversion.rst51 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
/third_party/python/Python/
Dpystrtod.c337 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
Dmarshal.c925 return PyOS_string_to_double(buf, NULL, NULL); in r_float_str()
/third_party/python/PC/
Dpython3dll.c497 EXPORT_FUNC(PyOS_string_to_double)
/third_party/python/Doc/data/
Dstable_abi.dat471 function,PyOS_string_to_double,3.2,,
/third_party/python/Doc/whatsnew/
D3.1.rst508 * 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.toml1115 [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.c3209 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
3218 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
D_pickle.c5400 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()