summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-09 23:38:25 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-09 23:38:25 (GMT)
commit021572431ba02de96361d64a8575f82097abc8f4 (patch)
treeea417451c4002669e909ba0114995dcc11048b97 /Misc
parent6139c1bfa305f35a51c06685814c840d09bda7b8 (diff)
parenta3651136790d3ec8291a07b1a5af8f0353e59c20 (diff)
downloadcpython-021572431ba02de96361d64a8575f82097abc8f4.zip
cpython-021572431ba02de96361d64a8575f82097abc8f4.tar.gz
cpython-021572431ba02de96361d64a8575f82097abc8f4.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 f204ecb..d81f75c 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1068,6 +1068,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 e7655f3..b46c585 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -365,6 +365,9 @@ Core and Builtins
Library
-------
+- Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
+ when called with a timeout. Patch by Arnaud Ysmal.
+
- Issue #13254: Fix Maildir initialization so that maildir contents
are read correctly.