Home
last modified time | relevance | path

Searched refs:TryFinally (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Tools/pybench/
DWith.py50 class TryFinally(Test): class
/external/python/asn1crypto/tests/
Dtest_init.py87 elif sys.version_info < (3, 3) and isinstance(node, _ast.TryFinally):
/external/python/cpython2/Tools/compiler/
Dast.txt30 TryFinally: body, final
/external/python/cpython2/Parser/
DPython.asdl33 | TryFinally(stmt* body, stmt* finalbody)
/external/python/cpython2/Include/
DPython-ast.h151 } TryFinally; member
423 #define TryFinally(a0, a1, a2, a3, a4) _Py_TryFinally(a0, a1, a2, a3, a4) macro
/external/python/cpython2/Python/
Dsymtable.c1108 VISIT_SEQ(st, stmt, s->v.TryFinally.body); in symtable_visit_stmt()
1109 VISIT_SEQ(st, stmt, s->v.TryFinally.finalbody); in symtable_visit_stmt()
DPython-ast.c1318 TryFinally(asdl_seq * body, asdl_seq * finalbody, int lineno, int col_offset, in TryFinally() function
1326 p->v.TryFinally.body = body; in TryFinally()
1327 p->v.TryFinally.finalbody = finalbody; in TryFinally()
2445 value = ast2obj_list(o->v.TryFinally.body, ast2obj_stmt); in ast2obj_stmt()
2450 value = ast2obj_list(o->v.TryFinally.finalbody, ast2obj_stmt); in ast2obj_stmt()
4501 *out = TryFinally(body, finalbody, lineno, col_offset, arena); in obj2ast_stmt()
Dcompile.c1777 VISIT_SEQ(c, stmt, s->v.TryFinally.body); in compiler_try_finally()
1785 VISIT_SEQ(c, stmt, s->v.TryFinally.finalbody); in compiler_try_finally()
Dast.c3138 return TryFinally(body, finally, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_try_stmt()
/external/python/cpython2/Lib/compiler/
Dtransformer.py935 return TryFinally(self.com_node(nodelist[2]),
965 return TryFinally(try_except, finallyNode, lineno=nodelist[0][2])
Dast.py1294 class TryFinally(Node): class
/external/python/cpython2/PC/os2emx/
Dpython27.def700 "TryFinally"
/external/python/cpython2/Doc/library/
Dcompiler.rst482 | :class:`TryFinally` | :attr:`body` | |
/external/python/cpython3/Misc/
DHISTORY8544 - Issue #12199: The TryExcept and TryFinally and AST nodes have been unified