commit | a3651136790d3ec8291a07b1a5af8f0353e59c20 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Thu Nov 10 00:37:09 2011 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Thu Nov 10 00:37:09 2011 +0100 |
tree | d6d6421d712acb3375b8847046e13c1855262a9c | |
parent | 69d44fdb90fda47a1d6a46e3a49f67487b84c3ac [diff] [blame] |
Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely when called with a timeout. Patch by Arnaud Ysmal.
diff --git a/Misc/NEWS b/Misc/NEWS index 19e7960..24840b1 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -73,6 +73,9 @@ 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.