summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/ma.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2008-03-13 04:44:55 +0000
committerTravis Oliphant <oliphant@enthought.com>2008-03-13 04:44:55 +0000
commitfd6d555f8e4cf04871c1c1ed71ad53e2b6009164 (patch)
tree51cdc9be1d907e411276ac50e371e2c4cbbc13e5 /numpy/oldnumeric/ma.py
parente3fbd7984862c82e5065360145bc26c5cb603b79 (diff)
downloadnumpy-fd6d555f8e4cf04871c1c1ed71ad53e2b6009164.tar.gz
Fix oldnumeric compatibility with ma
Diffstat (limited to 'numpy/oldnumeric/ma.py')
-rw-r--r--numpy/oldnumeric/ma.py4
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)