]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] fix typo in dis.rst (GH-121612) (#123095)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 17 Aug 2024 09:11:33 +0000 (11:11 +0200)
committerGitHub <noreply@github.com>
Sat, 17 Aug 2024 09:11:33 +0000 (09:11 +0000)
fix typo in dis.rst (GH-121612)
(cherry picked from commit e9287ea426e8e1b930f1c3f0cb949a1416d29090)

Co-authored-by: mathysEthical <110499907+mathysEthical@users.noreply.github.com>
Doc/library/dis.rst

index a899e16a0167f32292a12f2ea0c7e19afcd3e7e8..a0d70e49e8f14eaae800755ff3b6614213619cca 100644 (file)
@@ -1585,7 +1585,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::