diff options
author | Travis Oliphant <oliphant@enthought.com> | 2010-01-15 23:46:54 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2010-01-15 23:46:54 +0000 |
commit | 0d4e67d58d86bdc0bf500ccd4abfe25ad5f48448 (patch) | |
tree | f086c0f4410b0fec38db075ec4a8a0671b825f54 /numpy/fft/fftpack.py | |
parent | aca11687ad79d5d4e89ded880315c6b7716d4a34 (diff) | |
download | numpy-0d4e67d58d86bdc0bf500ccd4abfe25ad5f48448.tar.gz |
Remove un-necessary import.
Diffstat (limited to 'numpy/fft/fftpack.py')
-rw-r--r-- | numpy/fft/fftpack.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/fft/fftpack.py b/numpy/fft/fftpack.py index 3e2c0e1e7..52cd1ae0c 100644 --- a/numpy/fft/fftpack.py +++ b/numpy/fft/fftpack.py @@ -37,7 +37,6 @@ __all__ = ['fft','ifft', 'rfft', 'irfft', 'hfft', 'ihfft', 'rfftn', from numpy.core import asarray, zeros, swapaxes, shape, conjugate, \ take import fftpack_lite as fftpack -from helper import * _fft_cache = {} _real_fft_cache = {} |