>>> # The positional arguments aren't part of the KeyObject>>> d[a, b:c, d, e=5, f=6] == d.__getitem__((a, b:c, d), KeyObject(e=5, f=6))This raises a question that needs to be answered, then: what would be the utility of mixing together positional and kwd arguments in this way?Even the xarray examples given so far don't seem to make use of this mixture. From my knowledge of pandas I am not sure what the meaning of this would be, either.