Fix a typo in STORE_SLICE docs (#143500)

This commit is contained in:
Tomas R. 2026-01-07 23:36:22 +01:00 committed by GitHub
parent bfc3d8d77f
commit 228d95582e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View 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