]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a typo in STORE_SLICE docs (#143500)
authorTomas R. <tomas.roun8@gmail.com>
Wed, 7 Jan 2026 22:36:22 +0000 (23:36 +0100)
committerGitHub <noreply@github.com>
Wed, 7 Jan 2026 22:36:22 +0000 (23:36 +0100)
Doc/library/dis.rst

index a24589fd0a5af38afca615b0ef2c5e3659c87763..755d681b9df2beea2ce08a655443a270efd6f711 100644 (file)
@@ -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