diff options
author | Tim Leslie <tim.leslie@gmail.com> | 2006-03-16 04:05:58 +0000 |
---|---|---|
committer | Tim Leslie <tim.leslie@gmail.com> | 2006-03-16 04:05:58 +0000 |
commit | 8c9cf9ac2a07e9ebb8dae51a264f708229770624 (patch) | |
tree | 6a0f2d4ccb907ca9f7c1068084c901dbce850d18 /numpy/lib/shape_base.py | |
parent | 5a712837f673a194353113ebad72d5050ad1f68f (diff) | |
download | numpy-8c9cf9ac2a07e9ebb8dae51a264f708229770624.tar.gz |
clean up some imports
Diffstat (limited to 'numpy/lib/shape_base.py')
-rw-r--r-- | numpy/lib/shape_base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py index b6ace7dd8..28ea0b1d3 100644 --- a/numpy/lib/shape_base.py +++ b/numpy/lib/shape_base.py @@ -4,7 +4,8 @@ __all__ = ['atleast_1d','atleast_2d','atleast_3d','vstack','hstack', 'apply_along_axis', 'repmat', 'kron'] import numpy.core.numeric as _nx -from numpy.core.numeric import * +from numpy.core.numeric import asarray, zeros, newaxis, outerproduct, \ + concatenate, isscalar, array from numpy.core.oldnumeric import product, reshape def apply_along_axis(func1d,axis,arr,*args): |