https://github.com/python/cpython/commit/e1572eadd0f4b572fdd2c5b0c9039b9cd194aee5 commit: e1572eadd0f4b572fdd2c5b0c9039b9cd194aee5 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: tomasr8 <[email protected]> date: 2026-01-07T22:42:48Z summary:
[3.13] Fix a typo in STORE_SLICE docs (GH-143500) (#143534) 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 67bfd14fa8dd25..091e67fc544e8c 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -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 _______________________________________________ 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]
