Home | History | Annotate | Download | only in Modules

Lines Matching full:can_overflow

764      raised if can_overflow is 1, or raises ValueError if can_overflow
787 int can_overflow)
803 if (can_overflow)
866 math_1(PyObject *arg, double (*func) (double), int can_overflow)
868 return math_1_to_whatever(arg, func, PyFloat_FromDouble, can_overflow);
872 math_1_to_int(PyObject *arg, double (*func) (double), int can_overflow)
874 return math_1_to_whatever(arg, func, PyLong_FromDouble, can_overflow);
910 #define FUNC1(funcname, func, can_overflow, docstring) \
912 return math_1(args, func, can_overflow); \