summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-06-24 22:49:57 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-06-24 22:49:57 (GMT)
commit94fbaac58def9d3c289e5904e82a1598d4577f9a (patch)
treecc59a0cfda417af407a5b985b483922787409b6e /Misc
parent53ec7d53d09ed475c2b0856777f58c721660b8ee (diff)
downloadcpython-94fbaac58def9d3c289e5904e82a1598d4577f9a.zip
cpython-94fbaac58def9d3c289e5904e82a1598d4577f9a.tar.gz
cpython-94fbaac58def9d3c289e5904e82a1598d4577f9a.tar.bz2
Merged revisions 82204 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82204 | antoine.pitrou | 2010-06-25 00:34:04 +0200 (ven., 25 juin 2010) | 5 lines Issue #8682: The ssl module now temporary increments the reference count of a socket object got through `PyWeakref_GetObject`, so as to avoid possible deallocation while the object is still being used. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e63f266..0a1dffd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -72,6 +72,10 @@ C-API
Library
-------
+- Issue #8682: The ssl module now temporary increments the reference count of
+ a socket object got through ``PyWeakref_GetObject``, so as to avoid possible
+ deallocation while the object is still being used.
+
- Issue #1368368: FancyURLOpener class changed to throw an Exception on wrong
password instead of presenting an interactive prompt. Older behavior can be
obtained by passing retry=True to http_error_xxx methods of FancyURLOpener.