diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-17 01:20:48 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-17 01:20:48 (GMT) |
commit | 5a8bc6f7f9bd58a08032e3712dd321f254c864d8 (patch) | |
tree | 91bbcec3fbc99bd18c3a8e3e056e4f993b4f0684 /Doc | |
parent | 2c0a967f8ec889dbe99cebc29b3990c6b39de035 (diff) | |
download | cpython-5a8bc6f7f9bd58a08032e3712dd321f254c864d8.zip cpython-5a8bc6f7f9bd58a08032e3712dd321f254c864d8.tar.gz cpython-5a8bc6f7f9bd58a08032e3712dd321f254c864d8.tar.bz2 |
Add a couple other whatsnew items
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index ebebb16..a0ce3e4 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -307,6 +307,15 @@ handle NAT with non-secure FTP without opening fixed ports. (Contributed by Giampaolo RodolĂ in :issue:`12139`) +imaplib +------- + +The :class:`~imaplib.IMAP4_SSL` constructor now accepts an SSLContext +parameter to control parameters of the secure channel. + +(Contributed by Sijin Joseph in :issue:`8808`) + + math ---- @@ -534,8 +543,6 @@ ssl (Contributed by Jacek Konieczny in :issue:`12551`) - - shutil ------ @@ -547,6 +554,15 @@ shutil path also specifying the user/group names and not only their numeric ids. (Contributed by Sandro Tosi in :issue:`12191`) +smtplib +------- + +The :class:`~smtplib.SMTP_SSL` constructor and the :meth:`~smtplib.SMTP.starttls` +method now accept an SSLContext parameter to control parameters of the secure +channel. + +(Contributed by Kasun Herath in :issue:`8809`) + urllib ------ |