We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
StackedBytesArray
oindex
vindex
1 parent 721aaf1 commit aacbe04Copy full SHA for aacbe04
xarray/coding/strings.py
@@ -249,12 +249,6 @@ def shape(self) -> tuple[int, ...]:
249
def __repr__(self):
250
return f"{type(self).__name__}({self.array!r})"
251
252
- def _vindex_get(self, key):
253
- return _numpy_char_to_bytes(self.array.vindex[key])
254
-
255
- def _oindex_get(self, key):
256
- return _numpy_char_to_bytes(self.array.oindex[key])
257
258
def __getitem__(self, key):
259
# require slicing the last dimension completely
260
key = type(key)(indexing.expanded_indexer(key.tuple, self.array.ndim))
0 commit comments