diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-09 23:37:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-09 23:37:09 (GMT) |
commit | a3651136790d3ec8291a07b1a5af8f0353e59c20 (patch) | |
tree | d6d6421d712acb3375b8847046e13c1855262a9c /Misc | |
parent | 69d44fdb90fda47a1d6a46e3a49f67487b84c3ac (diff) | |
download | cpython-a3651136790d3ec8291a07b1a5af8f0353e59c20.zip cpython-a3651136790d3ec8291a07b1a5af8f0353e59c20.tar.gz cpython-a3651136790d3ec8291a07b1a5af8f0353e59c20.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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -1001,6 +1001,7 @@ Bob Yodlowski Danny Yoo George Yoshida Masazumi Yoshikawa +Arnaud Ysmal Bernard Yue Moshe Zadka Milan Zamazal @@ -73,6 +73,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. |