diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-01 15:25:49 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-01 15:25:49 (GMT) |
commit | 93bba8fb8a9c6c6d5df33fed8ca9a17975b45c34 (patch) | |
tree | dd629860c909d42b1de5754a58954227e114b1ab /Misc | |
parent | 0261d754cd7f6bedf7415d94b18b7b631bfa8a63 (diff) | |
parent | 709176f10c1774f608a318171a94371e7d05d98f (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |