[Scipy-svn] r3108 - trunk/Lib/stats

scipy-svn at scipy.org scipy-svn at scipy.org
Fri Jun 15 13:57:32 EDT 2007


Author: oliphant
Date: 2007-06-15 12:57:26 -0500 (Fri, 15 Jun 2007)
New Revision: 3108

Modified:
   trunk/Lib/stats/stats.py
Log:
Replace 'as' variable name

Modified: trunk/Lib/stats/stats.py
===================================================================
--- trunk/Lib/stats/stats.py	2007-06-15 16:14:55 UTC (rev 3107)
+++ trunk/Lib/stats/stats.py	2007-06-15 17:57:26 UTC (rev 3108)
@@ -2094,8 +2094,8 @@
     )
     """
     it = np.argsort(a)
-    as = a[it]
-    return as, it
+    as_ = a[it]
+    return as_, it
 
 def rankdata(a):
     """Ranks the data in a, dealing with ties appropriately.




More information about the Scipy-svn mailing list