diff options
Diffstat (limited to 'numpy/core/_methods.py')
-rw-r--r-- | numpy/core/_methods.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/_methods.py b/numpy/core/_methods.py index 747f4268c..80e12298c 100644 --- a/numpy/core/_methods.py +++ b/numpy/core/_methods.py @@ -1,9 +1,9 @@ # Array methods which are called by the both the C-code for the method # and the Python code for the NumPy-namespace function -import multiarray as mu -import umath as um -from numeric import asanyarray +from numpy.core import multiarray as mu +from numpy.core import umath as um +from numpy.core.numeric import asanyarray def _amax(a, axis=None, out=None, skipna=False, keepdims=False): return um.maximum.reduce(a, axis=axis, |