summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-09 20:39:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-09 20:39:54 (GMT)
commit6e451df800af66eefe68ea15938bd65029af06c5 (patch)
tree3a94bf3c48a965f464f1f112d384076103a4676a /Misc
parent30e86a47676d2175901af29445aec5bd7967ef76 (diff)
downloadcpython-6e451df800af66eefe68ea15938bd65029af06c5.zip
cpython-6e451df800af66eefe68ea15938bd65029af06c5.tar.gz
cpython-6e451df800af66eefe68ea15938bd65029af06c5.tar.bz2
Followup to r83869 and issue #8524: rename socket.forget() to socket.detach()
and make it return the file descriptor.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cccdf66..cc13d1f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,7 +30,7 @@ Core and Builtins
Extensions
----------
-- Issue #8524: Add a forget() method to socket objects, so as to put the
+- Issue #8524: Add a detach() method to socket objects, so as to put the
socket into the closed state without closing the underlying file
descriptor.