Home
last modified time | relevance | path

Searched refs:overflow_exception (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Include/
Dpystrtod.h11 PyObject *overflow_exception);
/third_party/python/Doc/c-api/
Dconversion.rst50 …function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_exception)
71 if ``overflow_exception`` is ``NULL`` return ``Py_HUGE_VAL`` (with
73 ``overflow_exception`` must point to a Python exception object;
/third_party/python/Python/
Dpystrtod.c340 PyObject *overflow_exception) in PyOS_string_to_double() argument
360 else if (errno == ERANGE && fabs(x) >= 1.0 && overflow_exception) in PyOS_string_to_double()
361 PyErr_Format(overflow_exception, in PyOS_string_to_double()