Searched defs:functools_reduce (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Modules/
H A D_functoolsmodule.c15 functools_reduce(PyObject *self, PyObject *args) function
387 {"reduce", functools_reduce, METH_VARARGS, reduce_doc},
/external/python/cpython3/Modules/
H A D_functoolsmodule.c548 functools_reduce(PyObject *self, PyObject *args) function
1213 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
/external/python/cpython2/Python/
H A Dbltinmodule.c2116 static PyObject *functools_reduce = NULL; local
2122 if (functools_reduce == NULL) {
2126 functools_reduce = PyObject_GetAttrString(functools, "reduce");
2128 if (functools_reduce == NULL)
2131 return PyObject_Call(functools_reduce, args, NULL);

Completed in 140 milliseconds