Merged revisions 76245 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76245 | antoine.pitrou | 2009-11-13 23:31:18 +0100 (ven., 13 nov. 2009) | 6 lines
Issue #7318: multiprocessing now uses a timeout when it fails to establish
a connection with another process, rather than looping endlessly. The
default timeout is 20 seconds, which should be amply sufficient for
local connections.
........
diff --git a/Misc/NEWS b/Misc/NEWS
index 2dd5f6e..b607529 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,11 @@
Library
-------
+- Issue #7318: multiprocessing now uses a timeout when it fails to establish
+ a connection with another process, rather than looping endlessly. The
+ default timeout is 20 seconds, which should be amply sufficient for
+ local connections.
+
- Issue #7282: Fix a memory leak when an RLock was used in a thread other
than those started through `threading.Thread` (for example, using
`thread.start_new_thread()`.