Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_ast.h687 stmt_ty _PyAST_Try(asdl_stmt_seq * body, asdl_excepthandler_seq * handlers,
/third_party/python/Grammar/
Dpython.gram211 | 'try' &&':' b=block f=finally_block { _PyAST_Try(b, NULL, NULL, f, EXTRA) }
212 …_excepthandler_seq*]=except_block+ el=[else_block] f=[finally_block] { _PyAST_Try(b, ex, el, f, EX…
/third_party/python/Python/
DPython-ast.c2359 _PyAST_Try(asdl_stmt_seq * body, asdl_excepthandler_seq * handlers, in _PyAST_Try() function
7472 *out = _PyAST_Try(body, handlers, orelse, finalbody, lineno, in obj2ast_stmt()
/third_party/python/Parser/
Dparser.c5016 _res = _PyAST_Try ( b , NULL , NULL , f , EXTRA ); in try_stmt_rule()
5064 _res = _PyAST_Try ( b , ex , el , f , EXTRA ); in try_stmt_rule()