Lines Matching defs:kwnames
86 static int check_keyword(PyObject *kwnames, int index,
89 PyObject *kw = PyTuple_GET_ITEM(kwnames, index);
101 size_t nargsf, PyObject *kwnames)
106 if (kwnames != NULL) {
107 nkwargs = PyTuple_GET_SIZE(kwnames);
113 if (!check_keyword(kwnames, 0, "start")) {
117 PyObject *kw0 = PyTuple_GET_ITEM(kwnames, 0);
119 if (!check_keyword(kwnames, 1, "iterable")) {
124 if (!check_keyword(kwnames, 0, "iterable") ||
125 !check_keyword(kwnames, 1, "start")) {
134 if (nkwargs == 1 && !check_keyword(kwnames, 0, "iterable")) {
399 size_t nargsf, PyObject *kwnames)
401 if (!_PyArg_NoKwnames("reversed", kwnames)) {