[Python-checkins] r88055 - python/branches/py3k/Doc/whatsnew/3.2.rst
antoine.pitrou
python-checkins at python.org
Sun Jan 16 19:41:36 CET 2011
Author: antoine.pitrou
Date: Sun Jan 16 19:41:36 2011
New Revision: 88055
Log:
More SSL-related stuff
Modified:
python/branches/py3k/Doc/whatsnew/3.2.rst
Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst (original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst Sun Jan 16 19:41:36 2011
@@ -1194,6 +1194,14 @@
(Added by Antoine Pitrou, :issue:`9003`.)
+imaplib
+-------
+
+Support for explicit TLS on standard IMAP4 connections has been added through
+the new :mod:`imaplib.IMAP4.starttls` method.
+
+(Contributed by Lorenzo M. Catucci and Antoine Pitrou, :issue:`4471`.)
+
unittest
--------
@@ -1904,3 +1912,7 @@
(Contributed by Antoine Pitrou, :issue:`10711`.)
+* SSL sockets in timeout mode now raise :exc:`socket.timeout` when a timeout
+ occurs, rather than a generic :exc:`~ssl.SSLError`.
+
+ (Contributed by Antoine Pitrou, :issue:`10272`.)
More information about the Python-checkins
mailing list