Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dmathmodule.c2055 PyObject *result, *odd_part, *pyint_form; in math_factorial() local
2078 pyint_form = PyNumber_Index(arg); in math_factorial()
2079 if (pyint_form == NULL) { in math_factorial()
2082 x = PyLong_AsLongAndOverflow(pyint_form, &overflow); in math_factorial()
2083 Py_DECREF(pyint_form); in math_factorial()