Home
last modified time | relevance | path

Searched refs:END_FINALLY (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Include/
Dopcode.h91 #define END_FINALLY 88 macro
/external/python/cpython3/Include/
Dopcode.h68 #define END_FINALLY 88 macro
/external/python/cpython2/Lib/compiler/
Dpycodegen.py35 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/
Dpeephole.c440 _Py_OPCODE(codestr[h]) != END_FINALLY) in PyCode_Optimize()
Dcompile.c983 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()
Dceval.c2198 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/
Ddis.rst531 .. opcode:: END_FINALLY ()
574 ``END_FINALLY`` from re-raising the exception. (But non-local gotos should
/external/python/cpython3/Objects/
Dframeobject.c286 case END_FINALLY: { in frame_setlineno()
/external/python/cpython2/Objects/
Dframeobject.c264 case END_FINALLY: in frame_setlineno()
/external/python/cpython3/Doc/library/
Ddis.rst722 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/
Dcompile.c813 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()
Dceval.c2138 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/
D3.8.rst2138 :opcode:`POP_FINALLY`. Changed the behavior of :opcode:`END_FINALLY`
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst1676 :opcode:`POP_FINALLY`. Changed the behavior of :opcode:`END_FINALLY` and