diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-03-31 23:00:55 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-03-31 23:00:55 (GMT) |
commit | 8315f967647f4610776fef6dda830ce72db042c0 (patch) | |
tree | 70a84128a3e9301c1df0c511b4ae7d5ae61309ca /Misc | |
parent | 8612b4c21cfe2fa981fab1084cb7f9f6adafcb62 (diff) | |
parent | 70deb3de3960142fcf8497d2ea0cfae6609b8e66 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |