Home
last modified time | relevance | path

Searched refs:FINALLY_END (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dcompile.c87 enum fblocktype { LOOP, EXCEPT, FINALLY_TRY, FINALLY_END }; enumerator
1717 if (c->u->u_fblock[i].fb_type == FINALLY_END) in compiler_continue()
1724 case FINALLY_END: in compiler_continue()
1783 if (!compiler_push_fblock(c, FINALLY_END, end)) in compiler_try_finally()
1787 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()
2943 if (!compiler_push_fblock(c, FINALLY_END, finally)) in compiler_with()
2953 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_with()
/external/python/cpython3/Python/
Dcompile.c87 enum fblocktype { WHILE_LOOP, FOR_LOOP, TRY_EXCEPT, FINALLY_TRY, FINALLY_END, enumerator
1698 case FINALLY_END: in compiler_unwind_fblock()
3013 if (!compiler_push_fblock(c, FINALLY_END, end, NULL, NULL)) in compiler_try_finally()
3016 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()