diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2007-12-15 01:48:01 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2007-12-15 01:48:01 +0000 |
commit | 4fc786ed80c5b26c8457f8f65bdf58ad67c64b8e (patch) | |
tree | bfafccd22c39f4dce5f4243d88bcfd0b1bd2a22e /numpy/ma/extras.py | |
parent | 703e8d6323b19cbfeb96772c1e35f1cd68629336 (diff) | |
download | numpy-4fc786ed80c5b26c8457f8f65bdf58ad67c64b8e.tar.gz |
Fix benchmarks. Remove remaining imports of maskedarray.
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r-- | numpy/ma/extras.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py index f122d6d47..c716c0155 100644 --- a/numpy/ma/extras.py +++ b/numpy/ma/extras.py @@ -714,7 +714,7 @@ def notmasked_contiguous(a, axis=None): if __name__ == '__main__': # import numpy as N - from maskedarray.testutils import assert_equal + from numpy.ma.testutils import assert_equal if 1: b = ones(5) m = [1,0,0,0,0] |