We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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])