diff options
author | Brandt Bucher <brandt@python.org> | 2021-11-12 13:21:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-12 13:21:45 (GMT) |
commit | 8f1b71de731dda668aede7c9b34d0ad7afb8f6a8 (patch) | |
tree | 4c6a781883b3842d5c608d85ca7b2d0bb547f3ed /Doc/library | |
parent | e501d70b347c5093018d12482c30a7a98aab86d0 (diff) | |
download | cpython-8f1b71de731dda668aede7c9b34d0ad7afb8f6a8.zip cpython-8f1b71de731dda668aede7c9b34d0ad7afb8f6a8.tar.gz cpython-8f1b71de731dda668aede7c9b34d0ad7afb8f6a8.tar.bz2 |
bpo-45711: Re-bump the magic number and update doc (GH-29528)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/dis.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 4a80404..5fe9f65 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -873,10 +873,13 @@ All of the following opcodes use their arguments. .. opcode:: JUMP_IF_NOT_EXC_MATCH (target) Tests whether the second value on the stack is an exception matching TOS, - and jumps if it is not. Pops two values from the stack. + and jumps if it is not. Pops one value from the stack. .. versionadded:: 3.9 + .. versionchanged:: 3.11 + This opcode no longer pops the active exception. + .. opcode:: JUMP_IF_TRUE_OR_POP (target) |