summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-09 23:33:50 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-09 23:33:50 (GMT)
commit6a570d6b9af07a03859dd2175086e45ab60f4ee9 (patch)
treecbce8dfd66ad66b2f0dcde9c79fcc3fcf3abdd1d /Misc
parentcb65f3249a37e8e092eb566c77101cf961e23be6 (diff)
downloadcpython-6a570d6b9af07a03859dd2175086e45ab60f4ee9.zip
cpython-6a570d6b9af07a03859dd2175086e45ab60f4ee9.tar.gz
cpython-6a570d6b9af07a03859dd2175086e45ab60f4ee9.tar.bz2
Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
when called with a timeout. Patch by Arnaud Ysmal.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 97c961c..e6d9865 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -924,6 +924,7 @@ Bob Yodlowski
Danny Yoo
George Yoshida
Masazumi Yoshikawa
+Arnaud Ysmal
Bernard Yue
Moshe Zadka
Milan Zamazal
diff --git a/Misc/NEWS b/Misc/NEWS
index 21fdbdc..9517677 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,6 +76,9 @@ Core and Builtins
Library
-------
+- Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
+ when called with a timeout. Patch by Arnaud Ysmal.
+
- Issue #3067: Enhance the documentation and docstring of
locale.setlocale().