[Scipy-svn] r2299 - trunk/Lib

scipy-svn at scipy.org scipy-svn at scipy.org
Wed Oct 25 13:21:50 EDT 2006


Author: oliphant
Date: 2006-10-25 12:21:48 -0500 (Wed, 25 Oct 2006)
New Revision: 2299

Modified:
   trunk/Lib/__init__.py
Log:
Add back fft to scipy namespace.

Modified: trunk/Lib/__init__.py
===================================================================
--- trunk/Lib/__init__.py	2006-10-25 10:12:34 UTC (rev 2298)
+++ trunk/Lib/__init__.py	2006-10-25 17:21:48 UTC (rev 2299)
@@ -32,12 +32,13 @@
 from numpy import oldnumeric
 from numpy import *
 from numpy.random import rand, randn
+from numpy.fft import fft, ifft
 from numpy.lib.scimath import *
 _num.seterr(all='ignore')
 
 __all__ += ['oldnumeric']+_num.__all__
 
-__all__ += ['randn', 'rand']
+__all__ += ['randn', 'rand', 'fft', 'ifft']
 
 __doc__ += """
 Contents




More information about the Scipy-svn mailing list