[Scipy-svn] r2503 - trunk/Lib/sparse

scipy-svn at scipy.org scipy-svn at scipy.org
Mon Jan 8 02:56:25 EST 2007


Author: timl
Date: 2007-01-08 01:56:16 -0600 (Mon, 08 Jan 2007)
New Revision: 2503

Modified:
   trunk/Lib/sparse/sparse.py
Log:
fix typo

Modified: trunk/Lib/sparse/sparse.py
===================================================================
--- trunk/Lib/sparse/sparse.py	2007-01-08 05:25:56 UTC (rev 2502)
+++ trunk/Lib/sparse/sparse.py	2007-01-08 07:56:16 UTC (rev 2503)
@@ -799,7 +799,7 @@
                 cd = conj(self.data)
             else:
                 cd = self.data
-            y = sparsetool.csrmux(self.shape[1],self.shape[0],self.indptr,self.rowind,cd,oth)
+            y = sparsetools.csrmux(self.shape[1],self.shape[0],self.indptr,self.rowind,cd,oth)
             if isinstance(other, matrix):
                 y = asmatrix(y)
                 # In the (unlikely) event that this matrix is 1x1 and 'other' was an




More information about the Scipy-svn mailing list