Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c359 static PyTypeObject *ExceptHandler_type; variable
956 ExceptHandler_type = make_type("ExceptHandler", excepthandler_type, in init_types()
958 if (!ExceptHandler_type) return 0; in init_types()
3185 result = PyType_GenericNew(ExceptHandler_type, NULL, NULL); in ast2obj_excepthandler()
6513 isinstance = PyObject_IsInstance(obj, (PyObject*)ExceptHandler_type); in obj2ast_excepthandler()
6913 (PyObject*)ExceptHandler_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c451 static PyTypeObject *ExceptHandler_type; variable
1148 ExceptHandler_type = make_type("ExceptHandler", excepthandler_type, in init_types()
1150 if (!ExceptHandler_type) return 0; in init_types()
3735 result = PyType_GenericNew(ExceptHandler_type, NULL, NULL); in ast2obj_excepthandler()
7719 isinstance = PyObject_IsInstance(obj, (PyObject*)ExceptHandler_type); in obj2ast_excepthandler()
8343 if (PyDict_SetItemString(d, "ExceptHandler", (PyObject*)ExceptHandler_type) in PyInit__ast()