]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix typo in dis.rst (#121612)
authormathysEthical <110499907+mathysEthical@users.noreply.github.com>
Sat, 17 Aug 2024 08:50:58 +0000 (10:50 +0200)
committerGitHub <noreply@github.com>
Sat, 17 Aug 2024 08:50:58 +0000 (14:20 +0530)
Doc/library/dis.rst

index 440ca233584e57b81f1fb8c9c0a08cce9d095e1c..a770ad87ab02d364eb3442af66e78880a3c747e1 100644 (file)
@@ -1555,7 +1555,7 @@ iterations of the loop.
 
       end = STACK.pop()
       start = STACK.pop()
-      STACK.append(slice(start, stop))
+      STACK.append(slice(start, end))
 
    if it is 3, implements::