diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 19:30:36 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 19:30:36 +0000 |
commit | 5a765123d45616661f7d61f322ce8ba4a518e1aa (patch) | |
tree | 726bc976445a7b5f72e3b1ba751777c813bf4d46 /numpy/lib/function_base.py | |
parent | e706c7d92c4ee41e8e995fb3838bd0931b57efb5 (diff) | |
download | numpy-5a765123d45616661f7d61f322ce8ba4a518e1aa.tar.gz |
Fixed lib
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 10 |
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 |