Hi,I've been thinking about the * unpacking operator while writing some numpy code. PEP 448 allows the following:values = 1, *some_tuple, 2object[(1, *some_tuple, 2)]It seems reasonable to me that it should be extended to allowitem = object[1, *some_tuple, 2]item = object[1, *some_tuple, :]Was this overlooked in the original proposal, or deliberately rejected?Eric