diff options
-rw-r--r-- | numpy/ma/core.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index 9faed6c7e..cf4d8be2d 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -1306,7 +1306,6 @@ class MaskedArray(numeric.ndarray): # if getmask(indx) is not nomask: # msg = "Masked arrays must be filled before they can be used as indices!" # raise IndexError, msg - dtest = ndarray.__getitem__(self, indx) dout = ndarray.__getitem__(self.view(ndarray), indx) m = self._mask if not getattr(dout,'ndim', False): |