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

scipy-svn at scipy.org scipy-svn at scipy.org
Sat Jan 6 02:19:38 EST 2007


Author: timl
Date: 2007-01-06 01:19:28 -0600 (Sat, 06 Jan 2007)
New Revision: 2497

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

Modified: trunk/Lib/sparse/sparse.py
===================================================================
--- trunk/Lib/sparse/sparse.py	2007-01-06 06:34:41 UTC (rev 2496)
+++ trunk/Lib/sparse/sparse.py	2007-01-06 07:19:28 UTC (rev 2497)
@@ -798,7 +798,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