Searched refs:overflow_exception (Results 1 – 7 of 7) sorted by relevance
11 PyObject *overflow_exception);
17 PyObject *overflow_exception);
50 …function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_exception)71 if ``overflow_exception`` is ``NULL`` return ``Py_HUGE_VAL`` (with73 ``overflow_exception`` must point to a Python exception object;
54 …function:: double PyOS_string_to_double(const char *s, char **endptr, PyObject *overflow_exception)75 if ``overflow_exception`` is ``NULL`` return ``Py_HUGE_VAL`` (with77 ``overflow_exception`` must point to a Python exception object;
340 PyObject *overflow_exception) in PyOS_string_to_double() argument360 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()
338 PyObject *overflow_exception) in PyOS_string_to_double() argument360 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()
18709 …<parameter type-id='type-id-16' name='overflow_exception' filepath='Python/pystrtod.c' line='340' …