diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-03-31 23:00:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-03-31 23:00:17 (GMT) |
commit | 70deb3de3960142fcf8497d2ea0cfae6609b8e66 (patch) | |
tree | 15cb6d93f031cd47f105af9522666f3fa8631b7a /Misc/NEWS | |
parent | 6211b881613de6654ec8b5e77f3c705f1b4becb8 (diff) | |
download | cpython-70deb3de3960142fcf8497d2ea0cfae6609b8e66.zip cpython-70deb3de3960142fcf8497d2ea0cfae6609b8e66.tar.gz cpython-70deb3de3960142fcf8497d2ea0cfae6609b8e66.tar.bz2 |
Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()).
Patch by Matt Joiner.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -31,6 +31,9 @@ Core and Builtins 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. |