diff options
author | Travis Oliphant <oliphant@enthought.com> | 2008-03-13 04:44:55 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2008-03-13 04:44:55 +0000 |
commit | fd6d555f8e4cf04871c1c1ed71ad53e2b6009164 (patch) | |
tree | 51cdc9be1d907e411276ac50e371e2c4cbbc13e5 /numpy/oldnumeric/ma.py | |
parent | e3fbd7984862c82e5065360145bc26c5cb603b79 (diff) | |
download | numpy-fd6d555f8e4cf04871c1c1ed71ad53e2b6009164.tar.gz |
Fix oldnumeric compatibility with ma
Diffstat (limited to 'numpy/oldnumeric/ma.py')
-rw-r--r-- | numpy/oldnumeric/ma.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/oldnumeric/ma.py b/numpy/oldnumeric/ma.py index 601ff88af..81555570a 100644 --- a/numpy/oldnumeric/ma.py +++ b/numpy/oldnumeric/ma.py @@ -1,8 +1,8 @@ # Incompatibility in that getmask and a.mask returns nomask # instead of None -from numpy.core.ma import * -import numpy.core.ma as nca +from numpy.ma import * +import numpy.ma as nca def repeat(a, repeats, axis=0): return nca.repeat(a, repeats, axis) |