Searched refs:FINALLY_END (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Python/ |
D | compile.c | 84 enum fblocktype { LOOP, EXCEPT, FINALLY_TRY, FINALLY_END }; enumerator 2516 if (c->u->u_fblock[i].fb_type == FINALLY_END) in compiler_continue() 2523 case FINALLY_END: in compiler_continue() 2588 if (!compiler_push_fblock(c, FINALLY_END, end)) in compiler_try_finally() 2592 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally() 2705 if (!compiler_push_fblock(c, FINALLY_END, cleanup_end)) in compiler_try_except() 2717 compiler_pop_fblock(c, FINALLY_END, cleanup_end); in compiler_try_except() 4286 if (!compiler_push_fblock(c, FINALLY_END, finally)) in compiler_async_with() 4302 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_async_with() 4374 if (!compiler_push_fblock(c, FINALLY_END, finally)) in compiler_with() [all …]
|
/external/python/cpython2/Python/ |
D | compile.c | 87 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()
|