summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-08-31 20:29:39 (GMT)
committerDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-08-31 20:29:39 (GMT)
commit66c981b48b7337a385a0a23b2e36cc95d9339445 (patch)
tree7d59e752a02efd3d73c7ea07424dab7f91ed8199 /Misc
parent8d8e6156a00e67fda1edc1bdb657097eaf5c1459 (diff)
downloadcpython-66c981b48b7337a385a0a23b2e36cc95d9339445.zip
cpython-66c981b48b7337a385a0a23b2e36cc95d9339445.tar.gz
cpython-66c981b48b7337a385a0a23b2e36cc95d9339445.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 1fa1522..31669cf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -33,6 +33,9 @@ Core and Builtins
Library
-------
+- Issue #808164: Fixed socket.close to avoid references to globals, to
+ avoid issues when socket.close is called from a __del__ method.
+
- Issue #8797: urllib2 does a retry for Basic Authentication failure instead of
falling into recursion.