mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
Docs: Fix typo in code snippet (GH-114421)
This commit is contained in:
parent
2ef520ebec
commit
6d30cbee01
1 changed files with 1 additions and 1 deletions
|
|
@ -576,7 +576,7 @@ operations on it as if it was a Python list. The top of the stack corresponds to
|
|||
|
||||
Swap the top of the stack with the i-th element::
|
||||
|
||||
STACK[-i], STACK[-1] = stack[-1], STACK[-i]
|
||||
STACK[-i], STACK[-1] = STACK[-1], STACK[-i]
|
||||
|
||||
.. versionadded:: 3.11
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue