(self, key)
| 53 | ) |
| 54 | |
| 55 | def _getitem(self, key): |
| 56 | result = robust_getitem(self.array, key, catch=ValueError) |
| 57 | result = np.asarray(result.data) |
| 58 | axis = tuple(n for n, k in enumerate(key) if isinstance(k, integer_types)) |
| 59 | if result.ndim + len(axis) != self.array.ndim and axis: |
| 60 | result = np.squeeze(result, axis) |
| 61 | return result |
| 62 | |
| 63 | |
| 64 | def get_group(ds, group): |
nothing calls this directly
no test coverage detected