Searched refs:except_clause (Results 1 – 16 of 16) sorted by relevance
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_except.py | 32 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/ |
D | fix_except.py | 32 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/ |
D | graminit.h | 50 #define except_clause 303 macro
|
/external/python/cpython2/Include/ |
D | graminit.h | 46 #define except_clause 299 macro
|
/external/python/cpython2/Lib/ |
D | symbol.py | 56 except_clause = 299 variable
|
/external/python/cpython3/Lib/ |
D | symbol.py | 60 except_clause = 303 variable
|
/external/python/cpython2/Grammar/ |
D | Grammar | 70 ((except_clause ':' suite)+ 77 except_clause: 'except' [test [('as' | ',') test]]
|
/external/python/cpython3/Lib/lib2to3/ |
D | Grammar.txt | 74 ((except_clause ':' suite)+ 82 except_clause: 'except' [test [(',' | 'as') test]]
|
/external/python/cpython3/Grammar/ |
D | Grammar | 76 ((except_clause ':' suite)+ 83 except_clause: 'except' [test ['as' NAME]]
|
/external/python/cpython2/Lib/lib2to3/ |
D | Grammar.txt | 90 ((except_clause ':' suite)+ 98 except_clause: 'except' [test [(',' | 'as') test]]
|
/external/antlr/runtime/JavaScript/tests/functional/ |
D | Python.g | 245 ( (except_clause COLON suite)+ ('else' COLON suite)? 250 except_clause: 'except' (test (COMMA test)?)?
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 999 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/ |
D | coverage.py | 669 elif tree[j][0] == symbol.except_clause:
|
/external/python/cpython2/Python/ |
D | ast.c | 3013 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/ |
D | transformer.py | 945 if node[0] == symbol.except_clause:
|
/external/python/cpython3/Python/ |
D | ast.c | 3734 REQ(exc, except_clause); in ast_for_except_clause() 3823 else if (TYPE(CHILD(n, nch - 3)) != except_clause) { in ast_for_try_stmt()
|