commit | 70deb3de3960142fcf8497d2ea0cfae6609b8e66 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sun Apr 01 01:00:17 2012 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sun Apr 01 01:00:17 2012 +0200 |
tree | 15cb6d93f031cd47f105af9522666f3fa8631b7a | |
parent | 6211b881613de6654ec8b5e77f3c705f1b4becb8 [diff] [blame] |
Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). Patch by Matt Joiner.
diff --git a/Misc/NEWS b/Misc/NEWS index 07eea72..32c0b9e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -31,6 +31,9 @@ Library ------- +- Issue #13872: socket.detach() now marks the socket closed (as mirrored + in the socket repr()). Patch by Matt Joiner. + - Issue #14406: Fix a race condition when using ``concurrent.futures.wait( return_when=ALL_COMPLETED)``. Patch by Matt Joiner.