Lines Matching defs:args
2687 dict_update_common(PyObject *self, PyObject *args, PyObject *kwds,
2693 if (!PyArg_UnpackTuple(args, methname, 0, 1, &arg)) {
2713 dict_update(PyObject *self, PyObject *args, PyObject *kwds)
2715 if (dict_update_common(self, args, kwds, "update") != -1)
3753 dict_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
3787 dict_init(PyObject *self, PyObject *args, PyObject *kwds)
3789 return dict_update_common(self, args, kwds, "dict");
3793 dict_vectorcall(PyObject *type, PyObject * const*args,
3806 if (dict_update_arg(self, args[0]) < 0) {
3810 args++;
3814 if (PyDict_SetItem(self, PyTuple_GET_ITEM(kwnames, i), args[i]) < 0) {