Home
last modified time | relevance | path

Searched defs:keyfunc (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Objects/clinic/
Dlistobject.c.h235 PyObject *keyfunc = Py_None; in list_sort() local
/external/python/cpython3/Modules/clinic/
Ditertoolsmodule.c.h187 PyObject *keyfunc = Py_None; in itertools_groupby() local
/external/python/cpython3/Lib/test/
Dtest_itertools.py986 def keyfunc(obj): function
2322 keyfunc = lambda x: x function
/external/python/cpython3/Python/
Dbltinmodule.c1798 PyObject *it = NULL, *item, *val, *maxitem, *maxval, *keyfunc=NULL; in min_max() local
/external/python/cpython3/Modules/
Ditertoolsmodule.c423 PyObject *keyfunc; member
448 itertools_groupby_impl(PyTypeObject *type, PyObject *it, PyObject *keyfunc) in itertools_groupby_impl()
D_winapi.c905 PyObject *keyfunc = PyCFunction_New(&sortenvironmentkey_def, NULL); in sort_environment_keys() local
/external/python/cpython3/Lib/
Dpydoc.py368 keyfunc = lambda attr: (field_order.get(attr[0], 0), attr[0]) function
/external/python/cpython3/Objects/
Dlistobject.c2875 list_sort_impl(PyListObject *self, PyObject *keyfunc, int reverse) in list_sort_impl()