You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> import biggus
>>> import numpy as np
>>> a = np.arange(5)
>>> b = biggus.NumpyArrayAdapter(a)
>>> c = b[((1,),)]
>>> c.ndarray()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File ".../biggus/_init.py", line 1455, in ndarray
array = self._apply_keys()
File ".../biggus/_init.py", line 1525, in _apply_keys
array = self.concrete.__getitem__(keys)
IndexError: unsupported iterator index
This is the root of a hard-to-track-down bug in Iris, so it would be useful if an error was returned when the array was first indexed.
This is the root of a hard-to-track-down bug in Iris, so it would be useful if an error was returned when the array was first indexed.