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

scipy-svn at scipy.org scipy-svn at scipy.org
Fri Dec 22 04:40:22 EST 2006


Author: jarrod.millman
Date: 2006-12-22 03:40:20 -0600 (Fri, 22 Dec 2006)
New Revision: 2461

Modified:
   trunk/Lib/sandbox/models/cox.py
Log:
fix buglet


Modified: trunk/Lib/sandbox/models/cox.py
===================================================================
--- trunk/Lib/sandbox/models/cox.py	2006-12-22 03:45:42 UTC (rev 2460)
+++ trunk/Lib/sandbox/models/cox.py	2006-12-22 09:40:20 UTC (rev 2461)
@@ -154,7 +154,7 @@
                 raise NotImplementedError, 'Cox tie breaking method not implemented'
             else:
                 raise NotImplementedError, 'tie breaking method not recognized'
-        return = N.array([score])
+        return N.array([score])
 
     def information(self, b, ties='breslow'):
 




More information about the Scipy-svn mailing list