diff options
author | Travis Oliphant <oliphant@enthought.com> | 2008-04-01 14:26:07 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2008-04-01 14:26:07 +0000 |
commit | f4fd214af0c24c2a7f49c5c05f1430d803c54b01 (patch) | |
tree | f18a2e3866f812a970a3ed67fe761e97244f9fa2 /numpy/oldnumeric/ma.py | |
parent | 87af946ca8245c3f974725eb1ef2e76f0850aca2 (diff) | |
download | numpy-f4fd214af0c24c2a7f49c5c05f1430d803c54b01.tar.gz |
fix-up imports in oldnumeric/ma.py
Diffstat (limited to 'numpy/oldnumeric/ma.py')
-rw-r--r-- | numpy/oldnumeric/ma.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/numpy/oldnumeric/ma.py b/numpy/oldnumeric/ma.py index af83cb0a4..8bfef575b 100644 --- a/numpy/oldnumeric/ma.py +++ b/numpy/oldnumeric/ma.py @@ -10,12 +10,12 @@ Adapted for numpy_core 2005 by Travis Oliphant and """ import types, sys -import umath -import fromnumeric -from numeric import newaxis, ndarray, inf -from fromnumeric import amax, amin -from numerictypes import bool_, typecodes -import numeric +import numpy.core.umath as umath +import numpy.core.fromnumeric as fromnumeric +from numpy.core.numeric import newaxis, ndarray, inf +from numpy.core.fromnumeric import amax, amin +from numpy.core.numerictypes import bool_, typecodes +import numpy.core.numeric as numeric import warnings # Ufunc domain lookup for __array_wrap__ |