Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpystrtod.h9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
/external/python/cpython3/Objects/
Dcomplexobject.c797 z = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
810 y = PyOS_string_to_double(s, &end, NULL); in complex_from_string_inner()
Dfloatobject.c182 x = PyOS_string_to_double(s, (char **)&end, NULL); in float_from_string_inner()
/external/python/cpython3/Parser/
Dpegen.c642 compl.imag = PyOS_string_to_double(s, (char **)&end, NULL); in parsenumber_raw()
648 dx = PyOS_string_to_double(s, NULL, NULL); in parsenumber_raw()
/external/python/cpython3/Doc/c-api/
Dconversion.rst87 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
/external/python/cpython3/Python/
Dpystrtod.c299 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
Dmarshal.c948 return PyOS_string_to_double(buf, NULL, NULL); in r_float_str()
/external/python/cpython3/PC/
Dpython3dll.c531 EXPORT_FUNC(PyOS_string_to_double)
/external/python/cpython3/Doc/data/
Dstable_abi.dat491 func,PyOS_string_to_double,3.2,,
Dpython3.13.abi546 …<elf-symbol name='PyOS_string_to_double' type='func-type' binding='global-binding' visibility='def…
22779PyOS_string_to_double' mangled-name='PyOS_string_to_double' filepath='./Include/pystrtod.h' line='…
/external/python/cpython3/Modules/
D_testcapimodule.c888 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
897 result = PyOS_string_to_double(STR, NULL, NULL); \ in test_string_to_double()
D_pickle.c5362 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()
/external/python/cpython3/Doc/whatsnew/
D3.1.rst534 * Added a new :c:func:`PyOS_string_to_double` function to replace the
D2.7.rst2158 a new :c:func:`PyOS_string_to_double` function was added. The old
2545 * Use the new :c:func:`PyOS_string_to_double` function instead of the old
/external/python/cpython3/Misc/
Dstable_abi.toml1128 [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