Home
last modified time | relevance | path

Searched refs:try_stmt (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Include/
Dgraminit.h43 #define try_stmt 296 macro
/external/python/cpython2/Lib/
Dsymbol.py53 try_stmt = 296 variable
/external/python/cpython2/Grammar/
DGrammar65 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
69 try_stmt: ('try' ':' suite
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt85 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
89 try_stmt: ('try' ':' suite
Dfixer_util.py355 elif child.type == syms.try_stmt:
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g229 | try_stmt
243 try_stmt
/external/python/cpython2/Lib/compiler/
Dtransformer.py549 def try_stmt(self, nodelist): member in Transformer
1479 symbol.try_stmt,
/external/python/cpython2/Modules/
Dparsermodule.c1608 || (ntype == try_stmt) in validate_compound_stmt()
2099 int res = (validate_ntype(tree, try_stmt) in validate_try()
3221 case try_stmt: in validate_node()
/external/python/cpython2/Doc/reference/
Dcompound_stmts.rst48 : | `try_stmt`
219 try_stmt: try1_stmt | try2_stmt
/external/python/cpython2/Python/
Dast.c3068 REQ(n, try_stmt); in ast_for_try_stmt()
3304 case try_stmt: in ast_for_stmt()