[Python-checkins] r51234 - python/trunk/Lib/test/test_signal.py

tim.peters python-checkins at python.org
Sat Aug 12 07:17:42 CEST 2006


Author: tim.peters
Date: Sat Aug 12 07:17:41 2006
New Revision: 51234

Modified:
   python/trunk/Lib/test/test_signal.py
Log:
Ah, fudge.  One of the prints here actually "shouldn't be"
protected by "if verbose:", which caused the test to fail on
all non-Windows boxes.

Note that I deliberately didn't convert this to unittest yet,
because I expect it would be even harder to debug this on Tru64
after conversion.


Modified: python/trunk/Lib/test/test_signal.py
==============================================================================
--- python/trunk/Lib/test/test_signal.py	(original)
+++ python/trunk/Lib/test/test_signal.py	Sat Aug 12 07:17:41 2006
@@ -126,8 +126,7 @@
     # KeyboardInterrupt, finally getting us out of the loop.
     os.system(script)
     try:
-        if verbose:
-            print "starting pause() loop..."
+        print "starting pause() loop..."
         while 1:
             try:
                 if verbose:


More information about the Python-checkins mailing list