[Scipy-svn] r2340 - trunk/Lib/io

scipy-svn at scipy.org scipy-svn at scipy.org
Thu Nov 30 01:16:38 EST 2006


Author: timl
Date: 2006-11-30 00:16:27 -0600 (Thu, 30 Nov 2006)
New Revision: 2340

Modified:
   trunk/Lib/io/recaster.py
Log:
s/emumerate/enumerate/ typo

Modified: trunk/Lib/io/recaster.py
===================================================================
--- trunk/Lib/io/recaster.py	2006-11-29 18:40:23 UTC (rev 2339)
+++ trunk/Lib/io/recaster.py	2006-11-30 06:16:27 UTC (rev 2340)
@@ -202,7 +202,7 @@
             D = self.sctype_dict
             mx = D[sct]['max']
             mn = D[sct]['min']
-            for i, t in emumerate(sctypes):
+            for i, t in enumerate(sctypes):
                 this_sct = t[0]
                 this_d = D[dt]
                 if this_d['max'] >= mx and this_d['min'] <= mn:




More information about the Scipy-svn mailing list