mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #15064: Implement context manager protocol for multiprocessing types
This commit is contained in:
parent
0f884273b0
commit
d69cfe88ea
6 changed files with 89 additions and 1 deletions
|
@ -1719,6 +1719,15 @@ class _TestPool(BaseTestCase):
|
|||
p.close()
|
||||
p.join()
|
||||
|
||||
def test_context(self):
|
||||
if self.TYPE == 'processes':
|
||||
L = list(range(10))
|
||||
expected = [sqr(i) for i in L]
|
||||
with multiprocessing.Pool(2) as p:
|
||||
r = p.map_async(sqr, L)
|
||||
self.assertEqual(r.get(), expected)
|
||||
self.assertRaises(AssertionError, p.map_async, sqr, L)
|
||||
|
||||
def raising():
|
||||
raise KeyError("key")
|
||||
|
||||
|
@ -2266,6 +2275,22 @@ class _TestConnection(BaseTestCase):
|
|||
self.assertRaises(RuntimeError, reduction.recv_handle, conn)
|
||||
p.join()
|
||||
|
||||
def test_context(self):
|
||||
a, b = self.Pipe()
|
||||
|
||||
with a, b:
|
||||
a.send(1729)
|
||||
self.assertEqual(b.recv(), 1729)
|
||||
if self.TYPE == 'processes':
|
||||
self.assertFalse(a.closed)
|
||||
self.assertFalse(b.closed)
|
||||
|
||||
if self.TYPE == 'processes':
|
||||
self.assertTrue(a.closed)
|
||||
self.assertTrue(b.closed)
|
||||
self.assertRaises(IOError, a.recv)
|
||||
self.assertRaises(IOError, b.recv)
|
||||
|
||||
class _TestListener(BaseTestCase):
|
||||
|
||||
ALLOWED_TYPES = ('processes',)
|
||||
|
@ -2277,6 +2302,16 @@ class _TestListener(BaseTestCase):
|
|||
self.assertRaises(OSError, self.connection.Listener,
|
||||
l.address, family)
|
||||
|
||||
def test_context(self):
|
||||
with self.connection.Listener() as l:
|
||||
with self.connection.Client(l.address) as c:
|
||||
with l.accept() as d:
|
||||
c.send(1729)
|
||||
self.assertEqual(d.recv(), 1729)
|
||||
|
||||
if self.TYPE == 'processes':
|
||||
self.assertRaises(IOError, l.accept)
|
||||
|
||||
class _TestListenerClient(BaseTestCase):
|
||||
|
||||
ALLOWED_TYPES = ('processes', 'threads')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue