[Scipy-svn] r6441 - trunk/scipy/linalg/tests

scipy-svn at scipy.org scipy-svn at scipy.org
Sun May 30 08:36:00 EDT 2010


Author: rgommers
Date: 2010-05-30 07:36:00 -0500 (Sun, 30 May 2010)
New Revision: 6441

Modified:
   trunk/scipy/linalg/tests/test_lapack.py
Log:
TST: Remove outdated printed warnings about flapack/clapack being empty.

Modified: trunk/scipy/linalg/tests/test_lapack.py
===================================================================
--- trunk/scipy/linalg/tests/test_lapack.py	2010-05-30 07:53:02 UTC (rev 6440)
+++ trunk/scipy/linalg/tests/test_lapack.py	2010-05-30 12:36:00 UTC (rev 6441)
@@ -45,25 +45,14 @@
 
     def test_flapack(self):
         if hasattr(flapack,'empty_module'):
-            print """
-****************************************************************
-WARNING: flapack module is empty
------------
-See scipy/INSTALL.txt for troubleshooting.
-****************************************************************
-"""
+            #flapack module is empty
+            pass
+
     def test_clapack(self):
         if hasattr(clapack,'empty_module'):
-            print """
-****************************************************************
-WARNING: clapack module is empty
------------
-See scipy/INSTALL.txt for troubleshooting.
-Notes:
-* If atlas library is not found by numpy/distutils/system_info.py,
-  then scipy uses flapack instead of clapack.
-****************************************************************
-"""
+            #clapack module is empty
+            pass
 
+
 if __name__ == "__main__":
     run_module_suite()




More information about the Scipy-svn mailing list