Skip to content

Commit

Permalink
pythongh-107427: Update the description of UNPACK_SEQUENCE
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Jul 29, 2023
1 parent d0dcd27 commit 2ef1d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/dis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ iterations of the loop.
Unpacks ``STACK[-1]`` into *count* individual values, which are put onto the stack
right-to-left::

STACK.extend(STACK.pop()[:count:-1])
STACK.extend(STACK.pop()[:-count-1:-1])


.. opcode:: UNPACK_EX (counts)
Expand Down

0 comments on commit 2ef1d7f

Please sign in to comment.