Lines Matching refs:nargs
18 dict_fromkeys(PyTypeObject *type, PyObject *const *args, Py_ssize_t nargs) in dict_fromkeys() argument
24 if (!_PyArg_CheckPositional("fromkeys", nargs, 1, 2)) { in dict_fromkeys()
28 if (nargs < 2) { in dict_fromkeys()
61 dict_get(PyDictObject *self, PyObject *const *args, Py_ssize_t nargs) in dict_get() argument
67 if (!_PyArg_CheckPositional("get", nargs, 1, 2)) { in dict_get()
71 if (nargs < 2) { in dict_get()
98 dict_setdefault(PyDictObject *self, PyObject *const *args, Py_ssize_t nargs) in dict_setdefault() argument
104 if (!_PyArg_CheckPositional("setdefault", nargs, 1, 2)) { in dict_setdefault()
108 if (nargs < 2) { in dict_setdefault()
135 dict_pop(PyDictObject *self, PyObject *const *args, Py_ssize_t nargs) in dict_pop() argument
141 if (!_PyArg_CheckPositional("pop", nargs, 1, 2)) { in dict_pop()
145 if (nargs < 2) { in dict_pop()