Searched refs:END_FINALLY (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Include/ |
D | opcode.h | 91 #define END_FINALLY 88 macro
|
/external/python/cpython3/Include/ |
D | opcode.h | 66 #define END_FINALLY 88 macro
|
/external/python/cpython2/Lib/compiler/ |
D | pycodegen.py | 35 END_FINALLY = 4 variable 514 elif kind == END_FINALLY: 836 self.setups.push((END_FINALLY, final)) 871 self.setups.push((END_FINALLY, final))
|
/external/python/cpython3/Python/ |
D | compile.c | 977 case END_FINALLY: in stack_effect() 2419 ADDOP(c, END_FINALLY); in compiler_async_for() 2591 ADDOP(c, END_FINALLY); in compiler_try_finally() 2715 ADDOP(c, END_FINALLY); in compiler_try_except() 2738 ADDOP(c, END_FINALLY); in compiler_try_except() 3968 ADDOP(c, END_FINALLY); in compiler_async_comprehension_generator() 4301 ADDOP(c, END_FINALLY); in compiler_async_with() 4384 ADDOP(c, END_FINALLY); in compiler_with()
|
D | ceval.c | 1853 PREDICTED(END_FINALLY); in _PyEval_EvalFrameDefault() 1854 TARGET(END_FINALLY) { in _PyEval_EvalFrameDefault() 3030 PREDICT(END_FINALLY); in _PyEval_EvalFrameDefault()
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 531 .. opcode:: END_FINALLY () 574 ``END_FINALLY`` from re-raising the exception. (But non-local gotos should
|
/external/python/cpython3/Objects/ |
D | frameobject.c | 255 case END_FINALLY: in frame_setlineno()
|
/external/python/cpython2/Objects/ |
D | frameobject.c | 264 case END_FINALLY: in frame_setlineno()
|
/external/python/cpython2/Python/ |
D | compile.c | 813 case END_FINALLY: in opcode_stack_effect() 1786 ADDOP(c, END_FINALLY); in compiler_try_finally() 1873 ADDOP(c, END_FINALLY); in compiler_try_except() 2952 ADDOP(c, END_FINALLY); in compiler_with()
|
D | ceval.c | 2138 PREDICTED(END_FINALLY); in PyEval_EvalFrameEx() 2139 TARGET_NOARG(END_FINALLY) in PyEval_EvalFrameEx() 2997 PREDICT(END_FINALLY); in PyEval_EvalFrameEx()
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 690 .. opcode:: END_FINALLY 739 ``WHY_SILENCED`` to prevent :opcode:`END_FINALLY` from re-raising the
|