TIL, slicing needs to be separately implemented even when the `__getitem__` method currently supports `SupportsIndex` values. In layman terms, this works: ```py obj[0], obj[1] # β ``` but this doesn't: ```py obj[0:1] # β ```