Searched refs:END_FINALLY (Results 1 – 14 of 14) sorted by relevance
/external/python/cpython2/Include/ |
D | opcode.h | 91 #define END_FINALLY 88 macro
|
/external/python/cpython3/Include/ |
D | opcode.h | 68 #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 | peephole.c | 440 _Py_OPCODE(codestr[h]) != END_FINALLY) in PyCode_Optimize()
|
D | compile.c | 983 case END_FINALLY: in stack_effect() 2914 ADDOP(c, END_FINALLY); in compiler_try_finally() 3073 ADDOP(c, END_FINALLY); in compiler_try_except() 3096 ADDOP(c, END_FINALLY); in compiler_try_except() 4732 ADDOP(c, END_FINALLY); in compiler_async_with() 4815 ADDOP(c, END_FINALLY); in compiler_with()
|
D | ceval.c | 2198 case TARGET(END_FINALLY): { in _PyEval_EvalFrameDefault() 2199 PREDICTED(END_FINALLY); in _PyEval_EvalFrameDefault() 3406 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 | 286 case END_FINALLY: { in frame_setlineno()
|
/external/python/cpython2/Objects/ |
D | frameobject.c | 264 case END_FINALLY: in frame_setlineno()
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 722 It is similar to :opcode:`END_FINALLY`, but doesn't change the bytecode 731 Pushes ``NULL`` onto the stack for using it in :opcode:`END_FINALLY`, 738 .. opcode:: END_FINALLY
|
/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/whatsnew/ |
D | 3.8.rst | 2138 :opcode:`POP_FINALLY`. Changed the behavior of :opcode:`END_FINALLY`
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 1676 :opcode:`POP_FINALLY`. Changed the behavior of :opcode:`END_FINALLY` and
|