Searched refs:functools_reduce (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Modules/ |
D | _functoolsmodule.c | 15 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function 388 {"reduce", functools_reduce, METH_VARARGS, reduce_doc},
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 2117 static PyObject *functools_reduce = NULL; in builtin_reduce() local 2123 if (functools_reduce == NULL) { in builtin_reduce() 2127 functools_reduce = PyObject_GetAttrString(functools, "reduce"); in builtin_reduce() 2129 if (functools_reduce == NULL) in builtin_reduce() 2132 return PyObject_Call(functools_reduce, args, NULL); in builtin_reduce()
|
/external/python/cpython3/Modules/ |
D | _functoolsmodule.c | 629 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function 1414 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
|