Searched refs:PyOS_string_to_double (Results 1 – 16 of 16) sorted by relevance
/external/python/cpython3/Include/ |
D | pystrtod.h | 9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
/external/python/cpython3/Objects/ |
D | complexobject.c | 797 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()
|
D | floatobject.c | 182 x = PyOS_string_to_double(s, (char **)&end, NULL); in float_from_string_inner()
|
/external/python/cpython3/Parser/ |
D | pegen.c | 642 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/ |
D | conversion.rst | 87 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
|
/external/python/cpython3/Python/ |
D | pystrtod.c | 299 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
|
D | marshal.c | 948 return PyOS_string_to_double(buf, NULL, NULL); in r_float_str()
|
/external/python/cpython3/PC/ |
D | python3dll.c | 531 EXPORT_FUNC(PyOS_string_to_double)
|
/external/python/cpython3/Doc/data/ |
D | stable_abi.dat | 491 func,PyOS_string_to_double,3.2,,
|
D | python3.13.abi | 546 …<elf-symbol name='PyOS_string_to_double' type='func-type' binding='global-binding' visibility='def… 22779 …PyOS_string_to_double' mangled-name='PyOS_string_to_double' filepath='./Include/pystrtod.h' line='…
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 888 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.c | 5362 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.1.rst | 534 * Added a new :c:func:`PyOS_string_to_double` function to replace the
|
D | 2.7.rst | 2158 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/ |
D | stable_abi.toml | 1128 [function.PyOS_string_to_double]
|
D | HISTORY | 12872 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
|