summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-11-13 22:35:18 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-11-13 22:35:18 (GMT)
commit45d61a341d8e5a71ae9bb1a3923646ea2d7d127e (patch)
treea05cf2aaddb8d5ef98866d44514537caf15a5e34 /Misc
parentc3b0757b026955e4421e49ca841b9350b4faebc4 (diff)
downloadcpython-45d61a341d8e5a71ae9bb1a3923646ea2d7d127e.zip
cpython-45d61a341d8e5a71ae9bb1a3923646ea2d7d127e.tar.gz
cpython-45d61a341d8e5a71ae9bb1a3923646ea2d7d127e.tar.bz2
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. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a7b570c..43639a6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -123,6 +123,11 @@ C-API
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 #7197: Allow unittest.TextTestRunner objects to be pickled and
unpickled. This fixes crashes under Windows when trying to run
test_multiprocessing in verbose mode.