summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-01 15:25:49 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-01 15:25:49 (GMT)
commit93bba8fb8a9c6c6d5df33fed8ca9a17975b45c34 (patch)
treedd629860c909d42b1de5754a58954227e114b1ab /Misc
parent0261d754cd7f6bedf7415d94b18b7b631bfa8a63 (diff)
parent709176f10c1774f608a318171a94371e7d05d98f (diff)
downloadcpython-93bba8fb8a9c6c6d5df33fed8ca9a17975b45c34.zip
cpython-93bba8fb8a9c6c6d5df33fed8ca9a17975b45c34.tar.gz
cpython-93bba8fb8a9c6c6d5df33fed8ca9a17975b45c34.tar.bz2
Issue #14151: Raise a ValueError, not a NameError, when trying to create
a multiprocessing Client or Listener with an AF_PIPE type address under non-Windows platforms. Patch by Popa Claudiu.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 12ca91b..fa3660c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,10 @@ Core and Builtins
Library
-------
+- Issue #14151: Raise a ValueError, not a NameError, when trying to create
+ a multiprocessing Client or Listener with an AF_PIPE type address under
+ non-Windows platforms. Patch by Popa Claudiu.
+
- Issue #14300: Under Windows, sockets created using socket.dup() now allow
overlapped I/O. Patch by sbt.