Home | History | Annotate | Download | only in Python

Lines Matching full:return_type

54 static PyTypeObject *Return_type;
695 Return_type = make_type("Return", stmt_type, Return_fields, 1);
696 if (!Return_type) return 0;
2252 result = PyType_GenericNew(Return_type, NULL, NULL);
3730 isinstance = PyObject_IsInstance(obj, (PyObject*)Return_type);
6785 if (PyDict_SetItemString(d, "Return", (PyObject*)Return_type) < 0)