diff options
author | Jesse Noller <jnoller@gmail.com> | 2008-06-18 18:01:29 (GMT) |
---|---|---|
committer | Jesse Noller <jnoller@gmail.com> | 2008-06-18 18:01:29 (GMT) |
commit | a656d2cd8984f1ecb5a7e2cd09a18f72452f2b78 (patch) | |
tree | 71e2fa9924985ebe297833673872af7624505e89 | |
parent | d00df3cfe67af754255a39f597375a8ca8fc986d (diff) | |
download | cpython-a656d2cd8984f1ecb5a7e2cd09a18f72452f2b78.zip cpython-a656d2cd8984f1ecb5a7e2cd09a18f72452f2b78.tar.gz cpython-a656d2cd8984f1ecb5a7e2cd09a18f72452f2b78.tar.bz2 |
merge 64378
-rw-r--r-- | Lib/test/test_multiprocessing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index d7d3cfc..95c5c73 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 # |