Home | History | Annotate | Download | only in Python

Lines Matching defs:Suite

685         Suite_type = make_type("Suite", mod_type, Suite_fields, 1);

1029 Suite(asdl_seq * body, PyArena *arena)
1036 p->v.Suite.body = body;
2174 value = ast2obj_list(o->v.Suite.body, ast2obj_stmt);
3439 PyErr_Format(PyExc_TypeError, "Suite field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
3454 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from Suite");
3457 *out = Suite(body, arena);
6599 if (PyDict_SetItemString(d, "Suite", (PyObject*)Suite_type) < 0) return;