diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-01 15:19:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-01 15:19:09 (GMT) |
commit | 709176f10c1774f608a318171a94371e7d05d98f (patch) | |
tree | 8b9f881e5ddd25e8ac8be7de98a69afe838965d2 /Misc | |
parent | 58bb82e7b4b50fa5efaefc1196bd927992fbe783 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |