]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-132668: Remove outdated description of `POP_JUMP_*` instructions (GH-132669...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 18 Apr 2025 12:14:40 +0000 (14:14 +0200)
committerGitHub <noreply@github.com>
Fri, 18 Apr 2025 12:14:40 +0000 (14:14 +0200)
gh-132668: Remove outdated description of `POP_JUMP_*` instructions (GH-132669)
(cherry picked from commit 7e2672cfcf993e957c9966a88931fe6571affd24)

Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
Doc/library/dis.rst

index 07b8781644183009a5b85f9b04b5e65a09990b64..5e8cb4e69a54127ef40d10ec1c53bc7aa685c92a 100644 (file)
@@ -1339,9 +1339,6 @@ iterations of the loop.
    If ``STACK[-1]`` is not ``None``, increments the bytecode counter by *delta*.
    ``STACK[-1]`` is popped.
 
-   This opcode is a pseudo-instruction, replaced in final bytecode by
-   the directed versions (forward/backward).
-
    .. versionadded:: 3.11
 
    .. versionchanged:: 3.12
@@ -1353,9 +1350,6 @@ iterations of the loop.
    If ``STACK[-1]`` is ``None``, increments the bytecode counter by *delta*.
    ``STACK[-1]`` is popped.
 
-   This opcode is a pseudo-instruction, replaced in final bytecode by
-   the directed versions (forward/backward).
-
    .. versionadded:: 3.11
 
    .. versionchanged:: 3.12