Searched refs:overflow_exception (Results 1 – 3 of 3) sorted by relevance
11 PyObject *overflow_exception);
87 …function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_exception)108 if ``overflow_exception`` is ``NULL`` return ``Py_HUGE_VAL`` (with110 ``overflow_exception`` must point to a Python exception object;
301 PyObject *overflow_exception) in PyOS_string_to_double() argument321 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()