Home
last modified time | relevance | path

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

/third_party/python/Lib/lib2to3/fixes/
Dfix_except.py32 if n.type == syms.except_clause:
53 for except_clause, e_suite in find_excepts(try_cleanup):
54 if len(except_clause.children) == 4:
55 (E, comma, N) = except_clause.children[1:4]
/third_party/python/Include/
Dgraminit.h50 #define except_clause 303 macro
/third_party/python/Lib/
Dsymbol.py71 except_clause = 303 variable
/third_party/python/Lib/lib2to3/
DGrammar.txt114 ((except_clause ':' suite)+
122 except_clause: 'except' [test [(',' | 'as') test]]
/third_party/python/Grammar/
DGrammar120 ((except_clause ':' suite)+
127 except_clause: 'except' [test ['as' NAME]]
/third_party/python/Python/
Dast.c4117 REQ(exc, except_clause); in ast_for_except_clause()
4213 else if (TYPE(CHILD(n, nch - 3)) != except_clause) { in ast_for_try_stmt()