Home | History | Annotate | Download | only in Python

Lines Matching defs:arguments_type

365 static PyTypeObject *arguments_type;
959 arguments_type = make_type("arguments", &AST_type, arguments_fields, 4);
960 if (!arguments_type) return 0;
3231 result = PyType_GenericNew(arguments_type, NULL, NULL);
6914 if (PyDict_SetItemString(d, "arguments", (PyObject*)arguments_type) <