Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_ast.h790 excepthandler_ty _PyAST_ExceptHandler(expr_ty type, identifier name,
/third_party/python/Grammar/
Dpython.gram216 _PyAST_ExceptHandler(e, (t) ? ((expr_ty) t)->v.Name.id : NULL, b, EXTRA) }
217 | 'except' ':' b=block { _PyAST_ExceptHandler(NULL, NULL, b, EXTRA) }
/third_party/python/Python/
DPython-ast.c3248 _PyAST_ExceptHandler(expr_ty type, identifier name, asdl_stmt_seq * body, int in _PyAST_ExceptHandler() function
10177 *out = _PyAST_ExceptHandler(type, name, body, lineno, col_offset, in obj2ast_excepthandler()
/third_party/python/Parser/
Dparser.c5161 … _res = _PyAST_ExceptHandler ( e , ( t ) ? ( ( expr_ty ) t ) -> v . Name . id : NULL , b , EXTRA ); in except_block_rule()
5200 _res = _PyAST_ExceptHandler ( NULL , NULL , b , EXTRA ); in except_block_rule()