commit | 6a570d6b9af07a03859dd2175086e45ab60f4ee9 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Thu Nov 10 00:33:50 2011 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Thu Nov 10 00:33:50 2011 +0100 |
tree | cbce8dfd66ad66b2f0dcde9c79fcc3fcf3abdd1d | |
parent | cb65f3249a37e8e092eb566c77101cf961e23be6 [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 21fdbdc..9517677 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -76,6 +76,9 @@ 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().