8000 [3.13] gh-123550: Fix code snippet of `BUILD_TUPLE` in `dis` docs (GH… · python/cpython@b0a50a6 · GitHub
[go: up one dir, main page]

Skip to content

Commit b0a50a6

Browse files
[3.13] gh-123550: Fix code snippet of BUILD_TUPLE in dis docs (GH-123551) (#123555)
1 parent 4922e5b commit b0a50a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/dis.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1107,8 +1107,8 @@ iterations of the loop.
11071107
if count == 0:
11081108
value = ()
11091109
else:
1110-
STACK = STACK[:-count]
11111110
value = tuple(STACK[-count:])
1111+
STACK = STACK[:-count]
11121112

11131113
STACK.append(value)
11141114

0 commit comments

Comments
 (0)
0