From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 7 Jan 2026 22:42:12 +0000 (+0100) Subject: [3.14] Fix a typo in STORE_SLICE docs (GH-143500) (#143533) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ab5a24d860c4f368c75a7e5ebcbc011021cf2a4;p=thirdparty%2FPython%2Fcpython.git [3.14] Fix a typo in STORE_SLICE docs (GH-143500) (#143533) 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 ff4681dcb0e8..61556fd5be38 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -768,7 +768,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