summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-03-31 23:00:17 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-03-31 23:00:17 (GMT)
commit70deb3de3960142fcf8497d2ea0cfae6609b8e66 (patch)
tree15cb6d93f031cd47f105af9522666f3fa8631b7a /Misc/NEWS
parent6211b881613de6654ec8b5e77f3c705f1b4becb8 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 07eea72..32c0b9e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.