Lines Matching defs:args
951 PyObject *items_iter, *items, *args = NULL;
959 args = PyTuple_New(0);
960 if (args == NULL)
972 result = PyTuple_Pack(5, Py_TYPE(od), args, state, Py_None, items_iter);
977 Py_XDECREF(args);
1518 odict_init(PyObject *self, PyObject *args, PyObject *kwds)
1521 Py_ssize_t len = PyObject_Length(args);
1532 res = odict_update(self, args, kwds);
2257 mutablemapping_update(PyObject *self, PyObject *args, PyObject *kwargs)
2260 /* first handle args, if any */
2261 assert(args == NULL || PyTuple_Check(args));
2262 Py_ssize_t len = (args != NULL) ? PyTuple_GET_SIZE(args) : 0;
2270 PyObject *other = PyTuple_GET_ITEM(args, 0); /* borrowed reference */