Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpystrtod.h11 PyObject *overflow_exception);
/external/python/cpython3/Doc/c-api/
Dconversion.rst87 …function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_exception)
108 if ``overflow_exception`` is ``NULL`` return ``Py_HUGE_VAL`` (with
110 ``overflow_exception`` must point to a Python exception object;
/external/python/cpython3/Python/
Dpystrtod.c301 PyObject *overflow_exception) in PyOS_string_to_double() argument
321 else if (errno == ERANGE && fabs(x) >= 1.0 && overflow_exception) in PyOS_string_to_double()
322 PyErr_Format(overflow_exception, in PyOS_string_to_double()