Home
last modified time | relevance | path

Searched refs:Try_type (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Python/
DPython-ast.c145 static PyTypeObject *Try_type; variable
890 Try_type = make_type("Try", stmt_type, Try_fields, 4); in init_types()
891 if (!Try_type) return 0; in init_types()
2924 result = PyType_GenericNew(Try_type, NULL, NULL); in ast2obj_stmt()
5318 isinstance = PyObject_IsInstance(obj, (PyObject*)Try_type); in obj2ast_stmt()
8200 if (PyDict_SetItemString(d, "Try", (PyObject*)Try_type) < 0) return NULL; in PyInit__ast()