From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 7 Jan 2026 22:42:48 +0000 (+0100) Subject: [3.13] Fix a typo in STORE_SLICE docs (GH-143500) (#143534) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1572eadd0f4b572fdd2c5b0c9039b9cd194aee5;p=thirdparty%2FPython%2Fcpython.git [3.13] Fix a typo in STORE_SLICE docs (GH-143500) (#143534) Fix a typo in STORE_SLICE docs (GH-143500) (cherry picked from commit 228d95582e080c60335d5f0a229a6698eb69b11c) Co-authored-by: Tomas R --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 67bfd14fa8dd..091e67fc544e 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -716,7 +716,7 @@ not have to be) the original ``STACK[-2]``. end = STACK.pop() start = STACK.pop() container = STACK.pop() - values = STACK.pop() + value = STACK.pop() container[start:end] = value .. versionadded:: 3.12