diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 21:05:36 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 21:05:36 +0000 |
commit | 490712cd35dcecfc9423de4bde0b29cb012dda25 (patch) | |
tree | 56b6ccaac48afc370a189c596d5e9e90ac0254d4 /numpy/dft/helper.py | |
parent | 7ff852162596a8eaa02ef87730474285b080d594 (diff) | |
download | numpy-490712cd35dcecfc9423de4bde0b29cb012dda25.tar.gz |
More numpy fixes...
Diffstat (limited to 'numpy/dft/helper.py')
-rw-r--r-- | numpy/dft/helper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/dft/helper.py b/numpy/dft/helper.py index d5ed9940b..b402eb9ae 100644 --- a/numpy/dft/helper.py +++ b/numpy/dft/helper.py @@ -5,8 +5,8 @@ Discrete Fourier Transforms - helper.py __all__ = ['fftshift','ifftshift','fftfreq'] -from numpy.base import asarray, concatenate, arange, take, \ - array, integer +from numpy.core import asarray, concatenate, arange, take, \ + array, integer import types def fftshift(x,axes=None): |