Lines Matching defs:kwds
242 "__build_class__(func, name, /, *bases, [metaclass], **kwds) -> class\n\
492 filter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
499 !_PyArg_NoKeywords("filter", kwds))
1238 map_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1245 !_PyArg_NoKeywords("map", kwds))
1730 min_max(PyObject *args, PyObject *kwds, int op)
1752 ret = PyArg_ParseTupleAndKeywords(emptytuple, kwds,
1842 builtin_min(PyObject *self, PyObject *args, PyObject *kwds)
1844 return min_max(args, kwds, Py_LT);
1859 builtin_max(PyObject *self, PyObject *args, PyObject *kwds)
1861 return min_max(args, kwds, Py_GT);
2343 /*AC: we need to keep the kwds dict intact to easily call into the
2690 zip_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
2699 if (kwds) {
2706 empty, kwds, "|$p:zip", kwlist, &strict);