summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-03-31 23:00:55 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-03-31 23:00:55 (GMT)
commit8315f967647f4610776fef6dda830ce72db042c0 (patch)
tree70a84128a3e9301c1df0c511b4ae7d5ae61309ca /Misc
parent8612b4c21cfe2fa981fab1084cb7f9f6adafcb62 (diff)
parent70deb3de3960142fcf8497d2ea0cfae6609b8e66 (diff)
downloadcpython-8315f967647f4610776fef6dda830ce72db042c0.zip
cpython-8315f967647f4610776fef6dda830ce72db042c0.tar.gz
cpython-8315f967647f4610776fef6dda830ce72db042c0.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')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4e8515b..3423856 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,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.