summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-02-26 23:35:27 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-02-26 23:35:27 (GMT)
commitd3f6ea1d1e53f5ff35ebd149ddc57a1a0cb5e543 (patch)
tree5113433df1f0c506947446143bbf2eebe6a7cecc /Misc
parent8059e1e2140d08683429a6731ecf4b1d2385cce3 (diff)
downloadcpython-d3f6ea1d1e53f5ff35ebd149ddc57a1a0cb5e543.zip
cpython-d3f6ea1d1e53f5ff35ebd149ddc57a1a0cb5e543.tar.gz
cpython-d3f6ea1d1e53f5ff35ebd149ddc57a1a0cb5e543.tar.bz2
Merged revisions 88664 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88664 | antoine.pitrou | 2011-02-27 00:24:06 +0100 (dim., 27 févr. 2011) | 4 lines Issue #11326: Add the missing connect_ex() implementation for SSL sockets, and make it work for non-blocking connects. ........
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 d4f8b31..6ec6bf3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,9 @@ Core and Builtins
Library
-------
+- Issue #11326: Add the missing connect_ex() implementation for SSL sockets,
+ and make it work for non-blocking connects.
+
- Issue #10956: Buffered I/O classes retry reading or writing after a signal
has arrived and the handler returned successfully.