summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-08-31 20:08:07 (GMT)
committerDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-08-31 20:08:07 (GMT)
commit19d6a4fd4974a0536a02c93a0dc878194a1d4691 (patch)
treeeddd00809d7cbadfb218b55c441a8e33a650f5b4 /Misc
parenta606faa491af05b99dba6ebafa57662cf6b451fe (diff)
downloadcpython-19d6a4fd4974a0536a02c93a0dc878194a1d4691.zip
cpython-19d6a4fd4974a0536a02c93a0dc878194a1d4691.tar.gz
cpython-19d6a4fd4974a0536a02c93a0dc878194a1d4691.tar.bz2
Issue #808164: Fixed socket.close to avoid references to globals, to
avoid issues when socket.close is called from a __del__ method.
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 e32d61e..372b0b3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -142,6 +142,9 @@ Extensions
Library
-------
+- Issue #808164: Fixed socket.close to avoid references to globals, to
+ avoid issues when socket.close is called from a __del__ method.
+
- Issue #9706: ssl module provides a better error handling in various
circumstances.