diff options
author | rgommers <ralf.gommers@googlemail.com> | 2011-03-07 08:59:38 +0800 |
---|---|---|
committer | rgommers <ralf.gommers@googlemail.com> | 2011-03-11 12:27:02 +0800 |
commit | f791984cf1d8aedaeaf4fa36db539744d88de051 (patch) | |
tree | 93f5356d41ce4ba8e12c434591da5614dab9f196 /numpy/fft/fftpack.py | |
parent | a4fed55568a7bcc92bca0c3513e4c37dd5a47348 (diff) | |
download | numpy-f791984cf1d8aedaeaf4fa36db539744d88de051.tar.gz |
DEP: remove deprecated names in fftpack.
Diffstat (limited to 'numpy/fft/fftpack.py')
-rw-r--r-- | numpy/fft/fftpack.py | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/numpy/fft/fftpack.py b/numpy/fft/fftpack.py index 52cd1ae0c..7f9ee57fd 100644 --- a/numpy/fft/fftpack.py +++ b/numpy/fft/fftpack.py @@ -31,8 +31,7 @@ version of the FFTPACK routines. """ __all__ = ['fft','ifft', 'rfft', 'irfft', 'hfft', 'ihfft', 'rfftn', - 'irfftn', 'rfft2', 'irfft2', 'fft2', 'ifft2', 'fftn', 'ifftn', - 'refft', 'irefft','refftn','irefftn', 'refft2', 'irefft2'] + 'irfftn', 'rfft2', 'irfft2', 'fft2', 'ifft2', 'fftn', 'ifftn'] from numpy.core import asarray, zeros, swapaxes, shape, conjugate, \ take @@ -1114,12 +1113,3 @@ def irfft2(a, s=None, axes=(-2,-1)): """ return irfftn(a, s, axes) - -# Deprecated names -from numpy import deprecate -refft = deprecate(rfft, 'refft', 'rfft') -irefft = deprecate(irfft, 'irefft', 'irfft') -refft2 = deprecate(rfft2, 'refft2', 'rfft2') -irefft2 = deprecate(irfft2, 'irefft2', 'irfft2') -refftn = deprecate(rfftn, 'refftn', 'rfftn') -irefftn = deprecate(irfftn, 'irefftn', 'irfftn') |