]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Fix a typo in STORE_SLICE docs (GH-143500) (#143534)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 7 Jan 2026 22:42:48 +0000 (23:42 +0100)
committerGitHub <noreply@github.com>
Wed, 7 Jan 2026 22:42:48 +0000 (22:42 +0000)
Fix a typo in STORE_SLICE docs (GH-143500)
(cherry picked from commit 228d95582e080c60335d5f0a229a6698eb69b11c)

Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Doc/library/dis.rst

index 67bfd14fa8dd2556d3f366f4fbf06912e83f8f16..091e67fc544e8cf62143d2c947642a6c4ba5e540 100644 (file)
@@ -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