Searched refs:excepthandler_type (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Include/internal/ |
D | pycore_ast_state.h | 183 PyObject *excepthandler_type; member
|
/third_party/python/Python/ |
D | Python-ast.c | 197 Py_CLEAR(state->excepthandler_type); in _PyAST_Fini() 1690 state->excepthandler_type = make_type(state, "excepthandler", in init_types() 1693 if (!state->excepthandler_type) return 0; in init_types() 1694 if (!add_attributes(state, state->excepthandler_type, in init_types() 1696 if (PyObject_SetAttr(state->excepthandler_type, state->end_lineno, Py_None) in init_types() 1699 if (PyObject_SetAttr(state->excepthandler_type, state->end_col_offset, in init_types() 1703 state->excepthandler_type, in init_types() 11916 if (PyModule_AddObjectRef(m, "excepthandler", state->excepthandler_type) < in astmodule_exec()
|