mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
[3.13] gh-123550: Fix code snippet of BUILD_TUPLE
in dis
docs (GH-123551) (#123555)
This commit is contained in:
parent
4922e5b273
commit
b0a50a69cf
1 changed files with 1 additions and 1 deletions
|
@ -1107,8 +1107,8 @@ iterations of the loop.
|
|||
if count == 0:
|
||||
value = ()
|
||||
else:
|
||||
STACK = STACK[:-count]
|
||||
value = tuple(STACK[-count:])
|
||||
STACK = STACK[:-count]
|
||||
|
||||
STACK.append(value)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue