# Documentation The current description of UNPACK_SEQUENCE is as follows: ````` STACK.extend(STACK.pop()[:count:-1]) ````` It will not extend the stack since the count is a positive value. It should be fixed into ````` STACK.extend(STACK.pop()[:-count-1:-1]) ````` <!-- gh-linked-prs --> ### Linked PRs * gh-107429 * gh-107459 <!-- /gh-linked-prs -->
Documentation
The current description of UNPACK_SEQUENCE is as follows:
It will not extend the stack since the count is a positive value.
It should be fixed into
Linked PRs