mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Remove test_listener_client to remove possible race condition in the multiprocessing tests
This commit is contained in:
parent
18623825d2
commit
a3b6baaaab
1 changed files with 2 additions and 2 deletions
|
@ -1333,7 +1333,7 @@ class _TestConnection(BaseTestCase):
|
||||||
|
|
||||||
self.assertRaises(ValueError, a.send_bytes, msg, 4, -1)
|
self.assertRaises(ValueError, a.send_bytes, msg, 4, -1)
|
||||||
|
|
||||||
|
"""
|
||||||
class _TestListenerClient(BaseTestCase):
|
class _TestListenerClient(BaseTestCase):
|
||||||
|
|
||||||
ALLOWED_TYPES = ('processes', 'threads')
|
ALLOWED_TYPES = ('processes', 'threads')
|
||||||
|
@ -1353,7 +1353,7 @@ class _TestListenerClient(BaseTestCase):
|
||||||
self.assertEqual(conn.recv(), 'hello')
|
self.assertEqual(conn.recv(), 'hello')
|
||||||
p.join()
|
p.join()
|
||||||
l.close()
|
l.close()
|
||||||
|
"""
|
||||||
#
|
#
|
||||||
# Test of sending connection and socket objects between processes
|
# Test of sending connection and socket objects between processes
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue