mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +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:
|
if count == 0:
|
||||||
value = ()
|
value = ()
|
||||||
else:
|
else:
|
||||||
STACK = STACK[:-count]
|
|
||||||
value = tuple(STACK[-count:])
|
value = tuple(STACK[-count:])
|
||||||
|
STACK = STACK[:-count]
|
||||||
|
|
||||||
STACK.append(value)
|
STACK.append(value)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue