Searched refs:TryFinally (Results 1 – 14 of 14) sorted by relevance
/external/python/cpython2/Tools/pybench/ |
D | With.py | 50 class TryFinally(Test): class
|
/external/python/asn1crypto/tests/ |
D | test_init.py | 87 elif sys.version_info < (3, 3) and isinstance(node, _ast.TryFinally):
|
/external/python/cpython2/Tools/compiler/ |
D | ast.txt | 30 TryFinally: body, final
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 33 | TryFinally(stmt* body, stmt* finalbody)
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 151 } TryFinally; member 423 #define TryFinally(a0, a1, a2, a3, a4) _Py_TryFinally(a0, a1, a2, a3, a4) macro
|
/external/python/cpython2/Python/ |
D | symtable.c | 1108 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()
|
D | Python-ast.c | 1318 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()
|
D | compile.c | 1777 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()
|
D | ast.c | 3138 return TryFinally(body, finally, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_try_stmt()
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 935 return TryFinally(self.com_node(nodelist[2]), 965 return TryFinally(try_except, finallyNode, lineno=nodelist[0][2])
|
D | ast.py | 1294 class TryFinally(Node): class
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 700 "TryFinally"
|
/external/python/cpython2/Doc/library/ |
D | compiler.rst | 482 | :class:`TryFinally` | :attr:`body` | |
|
/external/python/cpython3/Misc/ |
D | HISTORY | 8544 - Issue #12199: The TryExcept and TryFinally and AST nodes have been unified
|