]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-22872: multiprocessing.Queue's put() and get() now raise ValueError if the queue...
authorZackery Spytz <zspytz@gmail.com>
Sat, 13 Oct 2018 09:26:09 +0000 (03:26 -0600)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 13 Oct 2018 09:26:09 +0000 (12:26 +0300)
commit0461704060474cb358d3495322950c4fd00616a0
treecebe84cdbb8e7c0b2ec7c01e6ffd83aabbd282a3
parente385d0661ecf8bc9ba95c4395d9a11262c2cbfec
bpo-22872: multiprocessing.Queue's put() and get() now raise ValueError if the queue is closed. (GH-9010)

Previously, put() and get() would raise AssertionError and OSError,
respectively.
Doc/library/multiprocessing.rst
Lib/multiprocessing/queues.py
Lib/test/_test_multiprocessing.py
Misc/NEWS.d/next/Library/2018-08-30-14-44-11.bpo-22872.NhIaZ9.rst [new file with mode: 0644]