Home
last modified time | relevance | path

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

/external/python/cpython3/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]
/external/python/cpython2/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]
/external/python/cpython3/Include/
Dgraminit.h50 #define except_clause 303 macro
/external/python/cpython2/Include/
Dgraminit.h46 #define except_clause 299 macro
/external/python/cpython2/Lib/
Dsymbol.py56 except_clause = 299 variable
/external/python/cpython3/Lib/
Dsymbol.py60 except_clause = 303 variable
/external/python/cpython2/Grammar/
DGrammar70 ((except_clause ':' suite)+
77 except_clause: 'except' [test [('as' | ',') test]]
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt74 ((except_clause ':' suite)+
82 except_clause: 'except' [test [(',' | 'as') test]]
/external/python/cpython3/Grammar/
DGrammar76 ((except_clause ':' suite)+
83 except_clause: 'except' [test ['as' NAME]]
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt90 ((except_clause ':' suite)+
98 except_clause: 'except' [test [(',' | 'as') test]]
/external/antlr/runtime/JavaScript/tests/functional/
DPython.g245 ( (except_clause COLON suite)+ ('else' COLON suite)?
250 except_clause: 'except' (test (COMMA test)?)?
/external/python/cpython2/Modules/
Dparsermodule.c999 VALIDATER(try); VALIDATER(except_clause);
2152 if (TYPE(CHILD(tree, nch - 3)) != except_clause) in validate_try()
2167 while (res && pos < nch && (TYPE(CHILD(tree, pos)) == except_clause)) { in validate_try()
2195 int res = (validate_ntype(tree, except_clause) in validate_except_clause()
/external/autotest/contrib/
Dcoverage.py669 elif tree[j][0] == symbol.except_clause:
/external/python/cpython2/Python/
Dast.c3013 REQ(exc, except_clause); in ast_for_except_clause()
3102 else if (TYPE(CHILD(n, nch - 3)) != except_clause) { in ast_for_try_stmt()
/external/python/cpython2/Lib/compiler/
Dtransformer.py945 if node[0] == symbol.except_clause:
/external/python/cpython3/Python/
Dast.c3734 REQ(exc, except_clause); in ast_for_except_clause()
3823 else if (TYPE(CHILD(n, nch - 3)) != except_clause) { in ast_for_try_stmt()