Lines Matching defs:args

930 set_update(PySetObject *so, PyObject *args)
934 for (i=0 ; i<PyTuple_GET_SIZE(args) ; i++) {
935 PyObject *other = PyTuple_GET_ITEM(args, i);
1007 frozenset_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1017 if (!PyArg_UnpackTuple(args, type->tp_name, 0, 1, &iterable)) {
1025 frozenset_vectorcall(PyObject *type, PyObject * const*args,
1037 PyObject *iterable = (nargs ? args[0] : NULL);
1042 set_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1121 set_union(PySetObject *so, PyObject *args)
1131 for (i=0 ; i<PyTuple_GET_SIZE(args) ; i++) {
1132 other = PyTuple_GET_ITEM(args, i);
1264 set_intersection_multi(PySetObject *so, PyObject *args)
1269 if (PyTuple_GET_SIZE(args) == 0)
1273 for (i=0 ; i<PyTuple_GET_SIZE(args) ; i++) {
1274 PyObject *other = PyTuple_GET_ITEM(args, i);
1305 set_intersection_update_multi(PySetObject *so, PyObject *args)
1309 tmp = set_intersection_multi(so, args);
1464 set_difference_update(PySetObject *so, PyObject *args)
1468 for (i=0 ; i<PyTuple_GET_SIZE(args) ; i++) {
1469 PyObject *other = PyTuple_GET_ITEM(args, i);
1570 set_difference_multi(PySetObject *so, PyObject *args)
1575 if (PyTuple_GET_SIZE(args) == 0)
1578 other = PyTuple_GET_ITEM(args, 0);
1583 for (i=1 ; i<PyTuple_GET_SIZE(args) ; i++) {
1584 other = PyTuple_GET_ITEM(args, i);
1950 PyObject *keys=NULL, *args=NULL, *result=NULL, *state=NULL;
1955 args = PyTuple_Pack(1, keys);
1956 if (args == NULL)
1961 result = PyTuple_Pack(3, Py_TYPE(so), args, state);
1963 Py_XDECREF(args);
1982 set_init(PySetObject *self, PyObject *args, PyObject *kwds)
1988 if (!PyArg_UnpackTuple(args, Py_TYPE(self)->tp_name, 0, 1, &iterable))
1999 set_vectorcall(PyObject *type, PyObject * const*args,
2014 return make_new_set(_PyType_CAST(type), args[0]);