Remove erroneous print statement.

This commit is contained in:
Alexandre Vassalotti 2009-07-22 04:43:33 +00:00
parent b66c67d255
commit a64ba363ca

View file

@ -414,9 +414,9 @@ class ThreadJoinOnShutdown(unittest.TestCase):
# Skip platforms with known problems forking from a worker thread. # Skip platforms with known problems forking from a worker thread.
# See http://bugs.python.org/issue3863. # See http://bugs.python.org/issue3863.
if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'os2emx'): if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'os2emx'):
print >>sys.stderr, ('Skipping test_3_join_in_forked_from_thread' raise unittest.SkipTest(
' due to known OS bugs on'), sys.platform 'test_3_join_in_forked_from_thread due to known OS bugs on ' +
return sys.platform)
script = """if 1: script = """if 1:
main_thread = threading.current_thread() main_thread = threading.current_thread()
def worker(): def worker():