From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 17 Aug 2024 09:03:04 +0000 (+0200) Subject: [3.12] fix typo in dis.rst (GH-121612) (#123096) X-Git-Tag: v3.12.6~64 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b9667e8243fcac869b2b076c4d3d99b56f05642e;p=thirdparty%2FPython%2Fcpython.git [3.12] fix typo in dis.rst (GH-121612) (#123096) fix typo in dis.rst (GH-121612) (cherry picked from commit e9287ea426e8e1b930f1c3f0cb949a1416d29090) Co-authored-by: mathysEthical <110499907+mathysEthical@users.noreply.github.com> --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 9414bee71880..76f1d67811d4 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1462,7 +1462,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::