mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Convert py2 print statement to print function in test skip.
This commit is contained in:
@@ -438,8 +438,8 @@ 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
|
||||
print('Skipping test_3_join_in_forked_from_thread'
|
||||
' due to known OS bugs on', sys.platform, file=sys.stderr)
|
||||
return
|
||||
script = """if 1:
|
||||
main_thread = threading.current_thread()
|
||||
|
||||
Reference in New Issue
Block a user