summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2008-06-18 18:01:29 +0000
committerJesse Noller <jnoller@gmail.com>2008-06-18 18:01:29 +0000
commitbde7b5495aae4e98abf5c61c45505bf69cbfaf70 (patch)
tree5b2489a691e3dabc0da2f0c4e42cebbe4a17ac1e /Lib
parent0d96f87382114caa525e2720d300d42cb72cd4be (diff)
downloadcpython-bde7b5495aae4e98abf5c61c45505bf69cbfaf70.tar.gz
merge 64378
Diffstat (limited to 'Lib')
-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 d7d3cfcdbd..95c5c73989 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
#