From: Tomas R. Date: Wed, 7 Jan 2026 22:36:22 +0000 (+0100) Subject: Fix a typo in STORE_SLICE docs (#143500) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=228d95582e080c60335d5f0a229a6698eb69b11c;p=thirdparty%2FPython%2Fcpython.git Fix a typo in STORE_SLICE docs (#143500) --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index a24589fd0a5a..755d681b9df2 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