summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-01 01:00:55 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-01 01:00:55 +0200
commit8315f967647f4610776fef6dda830ce72db042c0 (patch)
tree70a84128a3e9301c1df0c511b4ae7d5ae61309ca
parent8612b4c21cfe2fa981fab1084cb7f9f6adafcb62 (diff)
parent70deb3de3960142fcf8497d2ea0cfae6609b8e66 (diff)
downloadcpython-git-8315f967647f4610776fef6dda830ce72db042c0.tar.gz
Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()).
Patch by Matt Joiner.
-rw-r--r--Lib/socket.py11
-rw-r--r--Lib/test/test_socket.py1
-rw-r--r--Misc/NEWS3
3 files changed, 15 insertions, 0 deletions
diff --git a/Lib/socket.py b/Lib/socket.py
index b2954b5a87..8b2d1cd1d6 100644
--- a/Lib/socket.py
+++ b/Lib/socket.py
@@ -199,6 +199,17 @@ class socket(_socket.socket):
if self._io_refs <= 0:
self._real_close()
+ def detach(self):
+ """detach() -> file descriptor
+
+ Close the socket object without closing the underlying file descriptor.
+ The object cannot be used after this call, but the file descriptor
+ can be reused for other purposes. The file descriptor is returned.
+ """
+ self._closed = True
+ return super().detach()
+
+
def fromfd(fd, family, type, proto=0):
""" fromfd(fd, family, type[, proto]) -> socket object
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index ede1038662..17c5486430 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -1574,6 +1574,7 @@ class BasicTCPTest(SocketConnectedTest):
f = self.cli_conn.detach()
self.assertEqual(f, fileno)
# cli_conn cannot be used anymore...
+ self.assertTrue(self.cli_conn._closed)
self.assertRaises(socket.error, self.cli_conn.recv, 1024)
self.cli_conn.close()
# ...but we can create another socket using the (still open)
diff --git a/Misc/NEWS b/Misc/NEWS
index 4e8515b101..342385618d 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.