Home | History | Annotate | Download | only in Python

Lines Matching defs:arguments_type

458 static PyTypeObject *arguments_type;
1151 arguments_type = make_type("arguments", &AST_type, arguments_fields, 6);
1152 if (!arguments_type) return 0;
1153 if (!add_attributes(arguments_type, NULL, 0)) return 0;
3780 result = PyType_GenericNew(arguments_type, NULL, NULL);
8345 if (PyDict_SetItemString(d, "arguments", (PyObject*)arguments_type) < 0)