From: Alexandre Vassalotti Date: Wed, 22 Jul 2009 04:43:33 +0000 (+0000) Subject: Remove erroneous print statement. X-Git-Tag: v3.2a1~2757 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a64ba363cac270d78369834172b66022fa1a464c;p=thirdparty%2FPython%2Fcpython.git Remove erroneous print statement. --- diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index c7a22130e97b..3fe64a547ddf 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -414,9 +414,9 @@ class ThreadJoinOnShutdown(unittest.TestCase): # Skip platforms with known problems forking from a worker thread. # See http://bugs.python.org/issue3863. if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'os2emx'): - print >>sys.stderr, ('Skipping test_3_join_in_forked_from_thread' - ' due to known OS bugs on'), sys.platform - return + raise unittest.SkipTest( + 'test_3_join_in_forked_from_thread due to known OS bugs on ' + + sys.platform) script = """if 1: main_thread = threading.current_thread() def worker():