Home
last modified time | relevance | path

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

/dports/lang/python37/Python-3.7.12/Python/
H A Dcompile.c84 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()
4288 if (!compiler_push_fblock(c, FINALLY_END, finally)) in compiler_async_with()
4304 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_async_with()
4376 if (!compiler_push_fblock(c, FINALLY_END, finally)) in compiler_with()
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Python/
H A Dcompile.c88 enum fblocktype { WHILE_LOOP, FOR_LOOP, EXCEPT, FINALLY_TRY, FINALLY_TRY2, FINALLY_END, enumerator
1670 case FINALLY_END: in compiler_unwind_fblock()
2915 if (!compiler_push_fblock(c, FINALLY_END, end, end)) in compiler_try_finally()
2924 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()
3069 if (!compiler_push_fblock(c, FINALLY_END, cleanup_end, NULL)) in compiler_try_except()
3079 compiler_pop_fblock(c, FINALLY_END, cleanup_end); in compiler_try_except()
4726 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) in compiler_async_with()
4742 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_async_with()
4814 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) in compiler_with()
4825 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_with()
/dports/databases/py-sqlite3/Python-3.8.12/Python/
H A Dcompile.c88 enum fblocktype { WHILE_LOOP, FOR_LOOP, EXCEPT, FINALLY_TRY, FINALLY_TRY2, FINALLY_END, enumerator
1670 case FINALLY_END: in compiler_unwind_fblock()
2915 if (!compiler_push_fblock(c, FINALLY_END, end, end)) in compiler_try_finally()
2924 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()
3069 if (!compiler_push_fblock(c, FINALLY_END, cleanup_end, NULL)) in compiler_try_except()
3079 compiler_pop_fblock(c, FINALLY_END, cleanup_end); in compiler_try_except()
4726 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) in compiler_async_with()
4742 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_async_with()
4814 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) in compiler_with()
4825 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_with()
/dports/lang/python-tools/Python-3.8.12/Python/
H A Dcompile.c88 enum fblocktype { WHILE_LOOP, FOR_LOOP, EXCEPT, FINALLY_TRY, FINALLY_TRY2, FINALLY_END, enumerator
1670 case FINALLY_END: in compiler_unwind_fblock()
2915 if (!compiler_push_fblock(c, FINALLY_END, end, end)) in compiler_try_finally()
2924 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()
3069 if (!compiler_push_fblock(c, FINALLY_END, cleanup_end, NULL)) in compiler_try_except()
3079 compiler_pop_fblock(c, FINALLY_END, cleanup_end); in compiler_try_except()
4726 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) in compiler_async_with()
4742 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_async_with()
4814 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) in compiler_with()
4825 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_with()
/dports/lang/python38/Python-3.8.12/Python/
H A Dcompile.c88 enum fblocktype { WHILE_LOOP, FOR_LOOP, EXCEPT, FINALLY_TRY, FINALLY_TRY2, FINALLY_END, enumerator
1670 case FINALLY_END: in compiler_unwind_fblock()
2915 if (!compiler_push_fblock(c, FINALLY_END, end, end)) in compiler_try_finally()
2924 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()
3069 if (!compiler_push_fblock(c, FINALLY_END, cleanup_end, NULL)) in compiler_try_except()
3079 compiler_pop_fblock(c, FINALLY_END, cleanup_end); in compiler_try_except()
4726 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) in compiler_async_with()
4742 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_async_with()
4814 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) in compiler_with()
4825 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_with()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Python/
H A Dcompile.c88 enum fblocktype { WHILE_LOOP, FOR_LOOP, EXCEPT, FINALLY_TRY, FINALLY_TRY2, FINALLY_END, enumerator
1670 case FINALLY_END: in compiler_unwind_fblock()
2915 if (!compiler_push_fblock(c, FINALLY_END, end, end)) in compiler_try_finally()
2924 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()
3069 if (!compiler_push_fblock(c, FINALLY_END, cleanup_end, NULL)) in compiler_try_except()
3079 compiler_pop_fblock(c, FINALLY_END, cleanup_end); in compiler_try_except()
4726 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) in compiler_async_with()
4742 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_async_with()
4814 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) in compiler_with()
4825 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_with()
/dports/lang/python-legacy/Python-2.7.18/Python/
H A 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()
/dports/lang/python27/Python-2.7.18/Python/
H A 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()
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dcompile.c87 enum fblocktype { LOOP, EXCEPT, FINALLY_TRY, FINALLY_END }; enumerator
1728 if (c->u->u_fblock[i].fb_type == FINALLY_END) in compiler_continue()
1735 case FINALLY_END: in compiler_continue()
1794 if (!compiler_push_fblock(c, FINALLY_END, end)) in compiler_try_finally()
1798 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()
2961 if (!compiler_push_fblock(c, FINALLY_END, finally)) in compiler_with()
2971 compiler_pop_fblock(c, FINALLY_END, finally); in compiler_with()
/dports/lang/python39/Python-3.9.9/Python/
H A Dcompile.c87 enum fblocktype { WHILE_LOOP, FOR_LOOP, TRY_EXCEPT, FINALLY_TRY, FINALLY_END, enumerator
1698 case FINALLY_END: in compiler_unwind_fblock()
3019 if (!compiler_push_fblock(c, FINALLY_END, end, NULL, NULL)) in compiler_try_finally()
3022 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()
/dports/lang/python310/Python-3.10.1/Python/
H A Dcompile.c144 enum fblocktype { WHILE_LOOP, FOR_LOOP, TRY_EXCEPT, FINALLY_TRY, FINALLY_END, enumerator
1811 case FINALLY_END: in compiler_unwind_fblock()
3121 if (!compiler_push_fblock(c, FINALLY_END, end, NULL, NULL)) in compiler_try_finally()
3124 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()
/dports/lang/python311/Python-3.11.0a3/Python/
H A Dcompile.c176 enum fblocktype { WHILE_LOOP, FOR_LOOP, TRY_EXCEPT, FINALLY_TRY, FINALLY_END, enumerator
1853 case FINALLY_END: in compiler_unwind_fblock()
3177 if (!compiler_push_fblock(c, FINALLY_END, end, NULL, NULL)) in compiler_try_finally()
3180 compiler_pop_fblock(c, FINALLY_END, end); in compiler_try_finally()