[Python-checkins] cpython: Add whatsnew items

antoine.pitrou python-checkins at python.org
Fri Dec 23 20:59:24 CET 2011


http://hg.python.org/cpython/rev/38df3e657ded
changeset:   74146:38df3e657ded
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Fri Dec 23 20:58:36 2011 +0100
summary:
  Add whatsnew items

files:
  Doc/whatsnew/3.3.rst |  12 ++++++++++++
  1 files changed, 12 insertions(+), 0 deletions(-)


diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -639,12 +639,24 @@
 
   (Contributed by Adam Simpkins in :issue:`12803`)
 
+* Diffie-Hellman key exchange, both regular and Elliptic Curve-based, is
+  now supported through the :meth:`~ssl.SSLContext.load_dh_params` and
+  :meth:`~ssl.SSLContext.set_ecdh_curve` methods.
+
+  (Contributed by Antoine Pitrou in :issue:`13626` and :issue:`13627`)
+
 * SSL sockets have a new :meth:`~ssl.SSLSocket.get_channel_binding` method
   allowing the implementation of certain authentication mechanisms such as
   SCRAM-SHA-1-PLUS.
 
   (Contributed by Jacek Konieczny in :issue:`12551`)
 
+* You can query the SSL compression algorithm used by an SSL socket, thanks
+  to its new :meth:`~ssl.SSLSocket.compression` method.
+
+  (Contributed by Antoine Pitrou in :issue:`13634`)
+
+
 shutil
 ------
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list