Searched refs:FINALLY_END (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython2/Python/ |
D | compile.c | 87 enum fblocktype { LOOP, EXCEPT, FINALLY_TRY, FINALLY_END }; enumerator 1708 if (c->u->u_fblock[i].fb_type == FINALLY_END) in compiler_continue() 1715 case FINALLY_END: in compiler_continue() 1774 if (!compiler_push_fblock(c, FINALLY_END, end)) in compiler_try_finally() 1778 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally() 2942 if (!compiler_push_fblock(c, FINALLY_END, finally)) in compiler_with() 2952 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_with()
|