Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Jul 30, 2023
1 parent 0d5abea commit f1c2d47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Doc/library/dis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -921,9 +921,10 @@ iterations of the loop.

.. opcode:: UNPACK_SEQUENCE (count)

Unpacks ``STACK.pop()`` into *count* individual values, which are put onto the stack
Unpacks ``STACK[-1]`` into *count* individual values, which are put onto the stack
right-to-left::

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


Expand Down

0 comments on commit f1c2d47

Please sign in to comment.