summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorGiampaolo Rodola' <g.rodola@gmail.com>2013-04-17 13:08:59 +0200
committerGiampaolo Rodola' <g.rodola@gmail.com>2013-04-17 13:08:59 +0200
commitb38897fc91c7f4b80bc2025ade219674d7b78bf3 (patch)
treee57827847e0cfc3fde489a7938576ad9b049fb49 /Misc
parent643ea53c140e2d2b3e21197fd87c1778131297d0 (diff)
downloadcpython-git-b38897fc91c7f4b80bc2025ade219674d7b78bf3.tar.gz
Fix issue #17707: multiprocessing.Queue's get() method does not block for short timeouts.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0b118d5093..be59be013c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
+- Issue #17707: multiprocessing.Queue's get() method does not block for short
+ timeouts.
+
- Issue #17012: shutil.which() no longer fallbacks to the PATH environment
variable if empty path argument is specified. Patch by Serhiy Storchaka.