Lines Matching refs:kwds

55 builtin___build_class__(PyObject *self, PyObject *args, PyObject *kwds)  in builtin___build_class__()  argument
90 if (kwds == NULL) { in builtin___build_class__()
95 mkw = PyDict_Copy(kwds); /* Don't modify kwds passed in! */ in builtin___build_class__()
221 builtin___import__(PyObject *self, PyObject *args, PyObject *kwds) in builtin___import__() argument
228 if (!PyArg_ParseTupleAndKeywords(args, kwds, "U|OOOi:__import__", in builtin___import__()
436 filter_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in filter_new() argument
442 if (type == &PyFilter_Type && !_PyArg_NoKeywords("filter()", kwds)) in filter_new()
1125 map_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in map_new() argument
1131 if (type == &PyMap_Type && !_PyArg_NoKeywords("map()", kwds)) in map_new()
1512 min_max(PyObject *args, PyObject *kwds, int op) in min_max() argument
1529 ret = PyArg_ParseTupleAndKeywords(emptytuple, kwds, "|$OO", kwlist, in min_max()
1614 builtin_min(PyObject *self, PyObject *args, PyObject *kwds) in builtin_min() argument
1616 return min_max(args, kwds, Py_LT); in builtin_min()
1631 builtin_max(PyObject *self, PyObject *args, PyObject *kwds) in builtin_max() argument
1633 return min_max(args, kwds, Py_GT); in builtin_max()
1745 builtin_print(PyObject *self, PyObject *args, PyObject *kwds) in builtin_print() argument
1754 if (!PyArg_ParseTupleAndKeywords(dummy_args, kwds, "|OOOO:print", in builtin_print()
2052 builtin_round(PyObject *self, PyObject *args, PyObject *kwds) in builtin_round() argument
2058 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|O:round", in builtin_round()
2122 builtin_sorted(PyObject *self, PyObject *args, PyObject *kwds) in builtin_sorted() argument
2131 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|Oi:sorted", in builtin_sorted()
2148 v = _PyObject_FastCallDict(callable, newargs, nargs, kwds); in builtin_sorted()
2433 zip_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in zip_new() argument
2441 if (type == &PyZip_Type && !_PyArg_NoKeywords("zip()", kwds)) in zip_new()