summaryrefslogtreecommitdiff
path: root/numpy/dft
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-04 21:05:36 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-04 21:05:36 +0000
commit490712cd35dcecfc9423de4bde0b29cb012dda25 (patch)
tree56b6ccaac48afc370a189c596d5e9e90ac0254d4 /numpy/dft
parent7ff852162596a8eaa02ef87730474285b080d594 (diff)
downloadnumpy-490712cd35dcecfc9423de4bde0b29cb012dda25.tar.gz
More numpy fixes...
Diffstat (limited to 'numpy/dft')
-rw-r--r--numpy/dft/fftpack.py2
-rw-r--r--numpy/dft/helper.py4
-rw-r--r--numpy/dft/info.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/numpy/dft/fftpack.py b/numpy/dft/fftpack.py
index fdaf65bce..2cd3d8f8a 100644
--- a/numpy/dft/fftpack.py
+++ b/numpy/dft/fftpack.py
@@ -26,7 +26,7 @@ __all__ = ['fft','inverse_fft', 'ifft', 'real_fft', 'refft', 'inverse_real_fft',
'inverse_fft2d', 'real_fftnd', 'real_fft2d', 'inverse_real_fftnd',
'inverse_real_fft2d',]
-from numpy.base import *
+from numpy.core import *
import fftpack_lite as fftpack
from helper import *
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):
diff --git a/numpy/dft/info.py b/numpy/dft/info.py
index 62c5c0630..8b81b8669 100644
--- a/numpy/dft/info.py
+++ b/numpy/dft/info.py
@@ -26,5 +26,5 @@ Core FFT routines
ihfft
"""
-depends = ['base']
+depends = ['core']
global_symbols = ['fft','ifft']