MRAB <google <at> mrabarnett.plus.com> writes: > Does myString[myTuple[0] : myTuple[1]] count as unpacking? If it does, > then how about myString.__getslice__(*myTuple)? Please don't use special method names directly and especially not __getslice__(). It's deprecated and will be removed.