summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-03 18:12:23 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-03 18:12:23 (GMT)
commit6d20cba8d646ec055851afac5494cc0e72d0dfa8 (patch)
treeea0cb833c40eb79eddd50324d6e42a2bedc2d298 /Misc
parent28b8b947601c4e414bb833e0154aecc9375be631 (diff)
downloadcpython-6d20cba8d646ec055851afac5494cc0e72d0dfa8.zip
cpython-6d20cba8d646ec055851afac5494cc0e72d0dfa8.tar.gz
cpython-6d20cba8d646ec055851afac5494cc0e72d0dfa8.tar.bz2
Issue #14482: Raise a ValueError, not a NameError, when trying to create
a multiprocessing Client or Listener with an AF_UNIX type address under Windows. 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 18a8d73..45e0c25 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,10 @@ Core and Builtins
Library
-------
+- Issue #14482: Raise a ValueError, not a NameError, when trying to create
+ a multiprocessing Client or Listener with an AF_UNIX type address under
+ Windows. Patch by Popa Claudiu.
+
- 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.