gh-123550: Fix code snippet of BUILD_TUPLE in dis docs (#123551)

This commit is contained in:
jlallas384 2024-09-01 10:11:40 +04:00 committed by GitHub
parent 0ff59d707c
commit bac0e115b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1118,8 +1118,8 @@ iterations of the loop.
if count == 0:
value = ()
else:
STACK = STACK[:-count]
value = tuple(STACK[-count:])
STACK = STACK[:-count]
STACK.append(value)