[Scipy-svn] r2246 - trunk/Lib/interpolate

scipy-svn at scipy.org scipy-svn at scipy.org
Sat Oct 7 12:23:00 EDT 2006


Author: stefan
Date: 2006-10-07 11:22:48 -0500 (Sat, 07 Oct 2006)
New Revision: 2246

Modified:
   trunk/Lib/interpolate/interpolate.py
Log:
Remove debugging prints.


Modified: trunk/Lib/interpolate/interpolate.py
===================================================================
--- trunk/Lib/interpolate/interpolate.py	2006-10-07 16:21:58 UTC (rev 2245)
+++ trunk/Lib/interpolate/interpolate.py	2006-10-07 16:22:48 UTC (rev 2246)
@@ -76,10 +76,8 @@
         if len(self.x) != len(self.y):
             raise ValueError("x and y must have equal lengths")
         if len(self.z) == len(self.x) * len(self.y):
-            print "di"
             self.x, self.y = meshgrid(x,y)
             self.x, self.y = map(ravel, [self.x, self.y])
-            print self.x, self.y, self.z
         if len(self.z) != len(self.x):
             raise ValueError("Invalid length for input z")
         




More information about the Scipy-svn mailing list