diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-12-31 03:35:09 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-12-31 03:35:09 +0000 |
commit | 2cf3888ac82b0f16536ca31eeffb9a24433119ea (patch) | |
tree | 1f1b767510d000eeaf7087e0bc3e429ef92a3705 /scipy/base/ma.py | |
parent | f19cbc35ca753c1a220a45e55bfe59039e119acd (diff) | |
download | numpy-2cf3888ac82b0f16536ca31eeffb9a24433119ea.tar.gz |
Fixed bug in ma.py and added fast quicksorts.
Diffstat (limited to 'scipy/base/ma.py')
-rw-r--r-- | scipy/base/ma.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/ma.py b/scipy/base/ma.py index 49b953179..e0c81d8c8 100644 --- a/scipy/base/ma.py +++ b/scipy/base/ma.py @@ -610,7 +610,7 @@ class MaskedArray (object): def __array__ (self, t = None): "Special hook for numeric. Converts to numeric if possible." if self._mask is not None: - if umath.sometrue(oldnumeric.ravel(self._mask)): + if oldnumeric.sometrue(oldnumeric.ravel(self._mask)): raise MAError, \ """Cannot automatically convert masked array to numeric because data is masked in one or more locations. |