[Scipy-svn] r5362 - trunk/scipy/fftpack

scipy-svn at scipy.org scipy-svn at scipy.org
Wed Jan 7 10:53:25 EST 2009


Author: cdavid
Date: 2009-01-07 09:53:21 -0600 (Wed, 07 Jan 2009)
New Revision: 5362

Modified:
   trunk/scipy/fftpack/basic.py
Log:
Forgot to register cache destructors.

Modified: trunk/scipy/fftpack/basic.py
===================================================================
--- trunk/scipy/fftpack/basic.py	2009-01-07 15:53:06 UTC (rev 5361)
+++ trunk/scipy/fftpack/basic.py	2009-01-07 15:53:21 UTC (rev 5362)
@@ -16,6 +16,9 @@
 atexit.register(fftpack.destroy_zfft_cache)
 atexit.register(fftpack.destroy_zfftnd_cache)
 atexit.register(fftpack.destroy_drfft_cache)
+atexit.register(fftpack.destroy_cfft_cache)
+atexit.register(fftpack.destroy_cfftnd_cache)
+atexit.register(fftpack.destroy_rfft_cache)
 del atexit
 
 def istype(arr, typeclass):




More information about the Scipy-svn mailing list