diff options
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/dis.rst | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 14de191..87ec584 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -603,16 +603,6 @@ iterations of the loop. The ``__exit__`` function is in position 4 of the stack rather than 7. Exception representation on the stack now consist of one, not three, items. -.. opcode:: POP_EXCEPT_AND_RERAISE - - Pops the exception currently on top of the stack. Pops the integer value on top - of the stack and sets the ``f_lasti`` attribute of the frame with that value. - Then pops the next exception from the stack uses it to restore the current exception. - Finally it re-raises the originally popped exception. - Used in exception handler cleanup. - - .. versionadded:: 3.11 - .. opcode:: LOAD_ASSERTION_ERROR |