summaryrefslogtreecommitdiff
path: root/Lib/test/test_multiprocessing.py
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2008-06-18 16:34:50 +0000
committerJesse Noller <jnoller@gmail.com>2008-06-18 16:34:50 +0000
commita3b6baaaabf5ea16ebe75de7a3b05521b1874419 (patch)
treefb5088b1cc55aa2b803ca42a9b26ba9ae56ef9e1 /Lib/test/test_multiprocessing.py
parent18623825d25b0f8f3b4bf96c1d5c4c2977a94004 (diff)
downloadcpython-git-a3b6baaaabf5ea16ebe75de7a3b05521b1874419.tar.gz
Remove test_listener_client to remove possible race condition in the multiprocessing tests
Diffstat (limited to 'Lib/test/test_multiprocessing.py')
-rw-r--r--Lib/test/test_multiprocessing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py
index 0d53b3f240..363adc39fe 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
#