summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2012-02-08 20:15:58 (GMT)
committerCharles-François Natali <neologix@free.fr>2012-02-08 20:15:58 (GMT)
commited4a8fc0952a4211bc8bc929c23e11bebdfe9aa3 (patch)
tree5ef3babaa18c5b4e56847c3a556dd7cad4bb0ce0 /Misc/NEWS
parent1aa54a417d767efb2ebb4c1a31e69f7be9b1d6ae (diff)
downloadcpython-ed4a8fc0952a4211bc8bc929c23e11bebdfe9aa3.zip
cpython-ed4a8fc0952a4211bc8bc929c23e11bebdfe9aa3.tar.gz
cpython-ed4a8fc0952a4211bc8bc929c23e11bebdfe9aa3.tar.bz2
Issue #8184: multiprocessing: On Windows, don't set SO_REUSEADDR on Connection
sockets, and set FILE_FLAG_FIRST_PIPE_INSTANCE on named pipes, to make sure two listeners can't bind to the same socket/pipe (or any existing socket/pipe).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6338555..7367e1a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -472,6 +472,11 @@ Library
- Issue #13846: Add time.monotonic(), monotonic clock.
+- Issue #8184: multiprocessing: On Windows, don't set SO_REUSEADDR on
+ Connection sockets, and set FILE_FLAG_FIRST_PIPE_INSTANCE on named pipes, to
+ make sure two listeners can't bind to the same socket/pipe (or any existing
+ socket/pipe).
+
- Issue #10811: Fix recursive usage of cursors. Instead of crashing,
raise a ProgrammingError now.