[Scipy-svn] r5336 - trunk/scipy/weave

scipy-svn at scipy.org scipy-svn at scipy.org
Tue Jan 6 20:26:41 EST 2009


Author: jarrod.millman
Date: 2009-01-06 19:26:40 -0600 (Tue, 06 Jan 2009)
New Revision: 5336

Modified:
   trunk/scipy/weave/inline_tools.py
Log:
reducing test noise


Modified: trunk/scipy/weave/inline_tools.py
===================================================================
--- trunk/scipy/weave/inline_tools.py	2009-01-06 20:19:31 UTC (rev 5335)
+++ trunk/scipy/weave/inline_tools.py	2009-01-07 01:26:40 UTC (rev 5336)
@@ -183,7 +183,7 @@
                       On Unix, it'll probably use the same compiler that was
                       used when compiling Python. Cygwin's behavior should be
                       similar.
-        verbose --    optional. 0,1, or 2. defualt 0.  Speficies how much
+        verbose --    optional. 0,1, or 2. default 0.  Speficies how much
                       much information is printed during the compile phase
                       of inlining code.  0 is silent (except on windows with
                       msvc where it still prints some garbage). 1 informs
@@ -451,7 +451,8 @@
 
     # it's nice to let the users know when anything gets compiled, as the
     # slowdown is very noticeable.
-    print '<weave: compiling>'
+    if verbose > 0:
+        print '<weave: compiling>'
 
     # compile code in correct location, with the given compiler and verbosity
     # setting.  All input keywords are passed through to distutils




More information about the Scipy-svn mailing list