summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-01 15:19:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-01 15:19:09 (GMT)
commit709176f10c1774f608a318171a94371e7d05d98f (patch)
tree8b9f881e5ddd25e8ac8be7de98a69afe838965d2 /Misc
parent58bb82e7b4b50fa5efaefc1196bd927992fbe783 (diff)
downloadcpython-709176f10c1774f608a318171a94371e7d05d98f.zip
cpython-709176f10c1774f608a318171a94371e7d05d98f.tar.gz
cpython-709176f10c1774f608a318171a94371e7d05d98f.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 4bf3a91..2fa911e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,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 #13872: socket.detach() now marks the socket closed (as mirrored
in the socket repr()). Patch by Matt Joiner.