summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2012-07-27 13:19:00 (GMT)
committerRichard Oudkerk <shibturn@gmail.com>2012-07-27 13:19:00 (GMT)
commitb15e622bb884085a01a0095fb611005680ed68f7 (patch)
treeeef859348e8033b7d63831e199a327a4676b412d /Misc
parent46874ad367c2f3fdd47b2c8cb4b405bbcb2ed14a (diff)
downloadcpython-b15e622bb884085a01a0095fb611005680ed68f7.zip
cpython-b15e622bb884085a01a0095fb611005680ed68f7.tar.gz
cpython-b15e622bb884085a01a0095fb611005680ed68f7.tar.bz2
Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.
Original patch by J Derek Wilson.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index fc08cad..a76e842 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1130,6 +1130,7 @@ John Williams
Sue Williams
Frank Willison
Greg V. Wilson
+J Derek Wilson
Jody Winston
Collin Winter
Dik Winter
diff --git a/Misc/NEWS b/Misc/NEWS
index 2035f48..cf0d170 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -55,6 +55,9 @@ Core and Builtins
Library
-------
+- Issue #6056: Make multiprocessing use setblocking(True) on the
+ sockets it uses. Original patch by J Derek Wilson.
+
- Issue #15364: Fix sysconfig.get_config_var('srcdir') to be an
absolute path.