summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index b7c8c04be..694c727ed 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -12,12 +12,12 @@ l__all__ = ['logspace', 'linspace', 'round_',
import types
import math
-import numeric as _nx
-from numeric import ones, zeros, arange, concatenate, array, asarray, empty
-from numeric import ScalarType, dot, where, newaxis
-from umath import pi, multiply, add, arctan2, maximum, minimum, frompyfunc, \
+import numpy.core.numeric as _nx
+from numpy.core.numeric import ones, zeros, arange, concatenate, array, asarray, empty
+from numpy.core.numeric import ScalarType, dot, where, newaxis
+from numpy.core.umath import pi, multiply, add, arctan2, maximum, minimum, frompyfunc, \
isnan, absolute, cos, less_equal, sqrt, sin, mod
-from oldnumeric import ravel, nonzero, choose, \
+from numpy.core.oldnumeric import ravel, nonzero, choose, \
sometrue, alltrue, reshape, any, all, typecodes, ArrayType, squeeze,\
sort
from type_check import ScalarType, isscalar