diff options
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/dis.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 8490a09669..7afa62f95b 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -896,6 +896,20 @@ All of the following opcodes use their arguments. .. versionadded:: 3.11 +.. opcode:: POP_JUMP_IF_NOT_NONE (target) + + If TOS is not none, sets the bytecode counter to *target*. TOS is popped. + + .. versionadded:: 3.11 + + +.. opcode:: POP_JUMP_IF_NONE (target) + + If TOS is none, sets the bytecode counter to *target*. TOS is popped. + + .. versionadded:: 3.11 + + .. opcode:: PREP_RERAISE_STAR Combines the raised and reraised exceptions list from TOS, into an exception |