diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-08-12 05:17:41 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-08-12 05:17:41 (GMT) |
commit | 953c1897d2c1683e37899998d4e2bc1a9d85b6c0 (patch) | |
tree | 887b56e4d7bcf1c5a749ea083a3db8f4bb625bb3 /Lib/test | |
parent | 1742f3331fd5c6286e308db6681f9d6abcddb77c (diff) | |
download | cpython-953c1897d2c1683e37899998d4e2bc1a9d85b6c0.zip cpython-953c1897d2c1683e37899998d4e2bc1a9d85b6c0.tar.gz cpython-953c1897d2c1683e37899998d4e2bc1a9d85b6c0.tar.bz2 |
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.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_signal.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index 55cd978..13d02bb 100644 --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -126,8 +126,7 @@ try: # 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: |