Lines Matching refs:Tuple
785 Tuple_type = make_type("Tuple", expr_type, Tuple_fields, 2);
1964 Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset, PyArena
1970 "field ctx is required for Tuple");
1977 p->v.Tuple.elts = elts;
1978 p->v.Tuple.ctx = ctx;
2903 value = ast2obj_list(o->v.Tuple.elts, ast2obj_expr);
2908 value = ast2obj_expr_context(o->v.Tuple.ctx);
5875 PyErr_Format(PyExc_TypeError, "Tuple field \"elts\" must be a list, not a %.200s", tmp->ob_type->tp_name);
5886 PyErr_SetString(PyExc_RuntimeError, "Tuple field \"elts\" changed size during iteration");
5894 PyErr_SetString(PyExc_TypeError, "required field \"elts\" missing from Tuple");
5906 PyErr_SetString(PyExc_TypeError, "required field \"ctx\" missing from Tuple");
5909 *out = Tuple(elts, ctx, lineno, col_offset, arena);
6849 if (PyDict_SetItemString(d, "Tuple", (PyObject*)Tuple_type) < 0) return;