Home
last modified time | relevance | path

Searched refs:try_cleanup (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_except.py52 try_cleanup = [ch.clone() for ch in results["cleanup"]]
53 for except_clause, e_suite in find_excepts(try_cleanup):
92 children = [c.clone() for c in node.children[:3]] + try_cleanup + tail
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_except.py52 try_cleanup = [ch.clone() for ch in results["cleanup"]]
53 for except_clause, e_suite in find_excepts(try_cleanup):
92 children = [c.clone() for c in node.children[:3]] + try_cleanup + tail
/external/python/cpython3/Python/
Dcompile.c2367 basicblock *try, *except, *end, *after_try, *try_cleanup, in compiler_async_for() local
2383 try_cleanup = compiler_new_block(c); in compiler_async_for()
2387 || after_try == NULL || try_cleanup == NULL in compiler_async_for()
2418 ADDOP_JABS(c, POP_JUMP_IF_TRUE, try_cleanup); in compiler_async_for()
2425 compiler_use_next_block(c, try_cleanup); in compiler_async_for()
3914 *after_try, *except, *try_cleanup; in compiler_async_comprehension_generator() local
3926 try_cleanup = compiler_new_block(c); in compiler_async_comprehension_generator()
3930 except == NULL || try_cleanup == NULL) { in compiler_async_comprehension_generator()
3967 ADDOP_JABS(c, POP_JUMP_IF_TRUE, try_cleanup); in compiler_async_comprehension_generator()
4017 compiler_use_next_block(c, try_cleanup); in compiler_async_comprehension_generator()