Searched refs:PyOS_string_to_double (Results 1 – 15 of 15) sorted by relevance
| /third_party/python/Include/ |
| D | pystrtod.h | 9 PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
|
| /third_party/python/Objects/ |
| D | complexobject.c | 775 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()
|
| D | floatobject.c | 184 x = PyOS_string_to_double(s, (char **)&end, NULL); in float_from_string_inner()
|
| /third_party/python/Parser/ |
| D | pegen.c | 589 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/ |
| D | conversion.rst | 51 .. c:function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_excep…
|
| /third_party/python/Python/ |
| D | pystrtod.c | 337 PyOS_string_to_double(const char *s, in PyOS_string_to_double() function
|
| D | marshal.c | 925 return PyOS_string_to_double(buf, NULL, NULL); in r_float_str()
|
| /third_party/python/PC/ |
| D | python3dll.c | 497 EXPORT_FUNC(PyOS_string_to_double)
|
| /third_party/python/Doc/data/ |
| D | stable_abi.dat | 471 function,PyOS_string_to_double,3.2,,
|
| /third_party/python/Doc/whatsnew/ |
| D | 3.1.rst | 508 * Added a new :c:func:`PyOS_string_to_double` function to replace the
|
| D | 2.7.rst | 2153 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/ |
| D | stable_abi.toml | 1115 [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
|
| /third_party/python/Modules/ |
| D | _testcapimodule.c | 3209 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.c | 5400 d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError); in load_float()
|