https://github.com/python/cpython/commit/9ab5a24d860c4f368c75a7e5ebcbc011021cf2a4 commit: 9ab5a24d860c4f368c75a7e5ebcbc011021cf2a4 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: tomasr8 <[email protected]> date: 2026-01-07T22:42:12Z summary:
[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 <[email protected]> files: M Doc/library/dis.rst diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index ff4681dcb0e8a7..61556fd5be38b3 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]
