From: Jesse Noller Date: Wed, 18 Jun 2008 16:34:50 +0000 (+0000) Subject: Remove test_listener_client to remove possible race condition in the multiprocessing... X-Git-Tag: v2.6b1~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3b6baaaabf5ea16ebe75de7a3b05521b1874419;p=thirdparty%2FPython%2Fcpython.git Remove test_listener_client to remove possible race condition in the multiprocessing tests --- diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 0d53b3f2409d..363adc39fe33 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -1333,7 +1333,7 @@ class _TestConnection(BaseTestCase): self.assertRaises(ValueError, a.send_bytes, msg, 4, -1) - +""" class _TestListenerClient(BaseTestCase): ALLOWED_TYPES = ('processes', 'threads') @@ -1353,7 +1353,7 @@ class _TestListenerClient(BaseTestCase): self.assertEqual(conn.recv(), 'hello') p.join() l.close() - +""" # # Test of sending connection and socket objects between processes #