From a4e967673c993c93f89a9faa619c9d5042777ba9 Mon Sep 17 00:00:00 2001 From: mathysEthical <110499907+mathysEthical@users.noreply.github.com> Date: Sat, 17 Aug 2024 10:50:58 +0200 Subject: [PATCH] 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index a899e16a0167f3..a0d70e49e8f14e 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -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::