Home
last modified time | relevance | path

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

/dports/lang/python-legacy/Python-2.7.18/Modules/
H A D_functoolsmodule.c15 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
388 {"reduce", functools_reduce, METH_VARARGS, reduce_doc},
/dports/lang/python27/Python-2.7.18/Modules/
H A D_functoolsmodule.c15 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
388 {"reduce", functools_reduce, METH_VARARGS, reduce_doc},
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_functoolsmodule.c15 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
375 {"reduce", functools_reduce, METH_VARARGS, reduce_doc},
/dports/lang/python27/Python-2.7.18/Python/
H A Dbltinmodule.c2118 static PyObject *functools_reduce = NULL; in builtin_reduce() local
2124 if (functools_reduce == NULL) { in builtin_reduce()
2128 functools_reduce = PyObject_GetAttrString(functools, "reduce"); in builtin_reduce()
2130 if (functools_reduce == NULL) in builtin_reduce()
2133 return PyObject_Call(functools_reduce, args, NULL); in builtin_reduce()
/dports/lang/python-legacy/Python-2.7.18/Python/
H A Dbltinmodule.c2118 static PyObject *functools_reduce = NULL; in builtin_reduce() local
2124 if (functools_reduce == NULL) { in builtin_reduce()
2128 functools_reduce = PyObject_GetAttrString(functools, "reduce"); in builtin_reduce()
2130 if (functools_reduce == NULL) in builtin_reduce()
2133 return PyObject_Call(functools_reduce, args, NULL); in builtin_reduce()
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dbltinmodule.c2094 static PyObject *functools_reduce = NULL; in builtin_reduce() local
2100 if (functools_reduce == NULL) { in builtin_reduce()
2104 functools_reduce = PyObject_GetAttrString(functools, "reduce"); in builtin_reduce()
2106 if (functools_reduce == NULL) in builtin_reduce()
2109 return PyObject_Call(functools_reduce, args, NULL); in builtin_reduce()
/dports/databases/py-gdbm/Python-3.8.12/Modules/
H A D_functoolsmodule.c590 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
1374 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
/dports/lang/python37/Python-3.7.12/Modules/
H A D_functoolsmodule.c589 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
1364 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
/dports/lang/python-tools/Python-3.8.12/Modules/
H A D_functoolsmodule.c590 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
1374 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
/dports/lang/python38/Python-3.8.12/Modules/
H A D_functoolsmodule.c590 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
1374 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
/dports/databases/py-sqlite3/Python-3.8.12/Modules/
H A D_functoolsmodule.c590 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
1374 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Modules/
H A D_functoolsmodule.c590 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
1374 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
/dports/lang/python39/Python-3.9.9/Modules/
H A D_functoolsmodule.c630 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
1420 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
/dports/lang/python310/Python-3.10.1/Modules/
H A D_functoolsmodule.c655 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
1433 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
/dports/lang/python311/Python-3.11.0a3/Modules/
H A D_functoolsmodule.c656 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
1434 {"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
/dports/print/py-reportlab/reportlab-3.5.68/src/reportlab/lib/
H A Dutils.py8 from functools import reduce as functools_reduce unknown