[Scipy-svn] r2044 - trunk/Lib/sandbox/models

scipy-svn at scipy.org scipy-svn at scipy.org
Wed Jul 5 16:51:17 EDT 2006


Author: jonathan.taylor
Date: 2006-07-05 15:51:12 -0500 (Wed, 05 Jul 2006)
New Revision: 2044

Modified:
   trunk/Lib/sandbox/models/bsplines.py
   trunk/Lib/sandbox/models/formula.py
Log:
tabs -> spaces fix


Modified: trunk/Lib/sandbox/models/bsplines.py
===================================================================
--- trunk/Lib/sandbox/models/bsplines.py	2006-07-05 20:40:06 UTC (rev 2043)
+++ trunk/Lib/sandbox/models/bsplines.py	2006-07-05 20:51:12 UTC (rev 2044)
@@ -3,6 +3,8 @@
 import scipy.integrate
 import _bspline
 
+# note to self: check out eig_banded! in linalg.decomp?
+
 def _zerofunc(x):
     return N.zeros(x.shape, N.float)
 

Modified: trunk/Lib/sandbox/models/formula.py
===================================================================
--- trunk/Lib/sandbox/models/formula.py	2006-07-05 20:40:06 UTC (rev 2043)
+++ trunk/Lib/sandbox/models/formula.py	2006-07-05 20:51:12 UTC (rev 2044)
@@ -76,7 +76,7 @@
             self.func(namespace=namespace, **extra)
         """
         
-	if not hasattr(self, 'func') or not usefn:
+        if not hasattr(self, 'func') or not usefn:
             val = namespace[self.termname]
             if isinstance(val, Formula):
                 val = val(namespace=namespace, **extra)




More information about the Scipy-svn mailing list