]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-132668: Remove outdated description of `POP_JUMP_*` instructions (#132669)
authorYuki Kobayashi <drsuaimqjgar@gmail.com>
Fri, 18 Apr 2025 12:08:50 +0000 (21:08 +0900)
committerGitHub <noreply@github.com>
Fri, 18 Apr 2025 12:08:50 +0000 (14:08 +0200)
Doc/library/dis.rst

index 4fde5bf903880b594016719f7da14eb5ca33be52..4a5756b6ba24bfd3c8ad7b698f1f49cf59217483 100644 (file)
@@ -1354,9 +1354,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
@@ -1368,9 +1365,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