As in, this will parse:
slice = [ item for item in *items[start, finish] ]
But this will not:
slice = [ item for item in *items[start + 1, finish - 1] ]
-- Failed to parse:
-- [5] >> slice = [ item for item in *items[start + 1, finish - 1] ]
Not even with parentheses either.