https://github.com/python/cpython/commit/228d95582e080c60335d5f0a229a6698eb69b11c
commit: 228d95582e080c60335d5f0a229a6698eb69b11c
branch: main
author: Tomas R. <[email protected]>
committer: tomasr8 <[email protected]>
date: 2026-01-07T23:36:22+01:00
summary:

Fix a typo in STORE_SLICE docs (#143500)

files:
M Doc/library/dis.rst

diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index a24589fd0a5af3..755d681b9df2be 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

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to