From 0de0790d40473c5218301a7bdfbde7169a083f9e Mon Sep 17 00:00:00 2001 From: mathysEthical <110499907+mathysEthical@users.noreply.github.com> Date: Thu, 11 Jul 2024 04:20:06 +0200 Subject: [PATCH] Update dis.rst Fixed a wrong varname in the doc --- 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 e932b865a825a0..a8eecbdc3ec776 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1560,7 +1560,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::