summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-12-02 01:56:02 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-12-02 01:56:02 (GMT)
commite5b5edfa2ccf2c031be156a03267dc5629feda77 (patch)
treeaadbba4b4cfadf99b963a7db9e18d8fa2bb6c08d /Misc
parent1aa9a75fbff2333fd07574e3de8710c629483258 (diff)
downloadcpython-e5b5edfa2ccf2c031be156a03267dc5629feda77.zip
cpython-e5b5edfa2ccf2c031be156a03267dc5629feda77.tar.gz
cpython-e5b5edfa2ccf2c031be156a03267dc5629feda77.tar.bz2
Issue #19781: ftplib now supports SSLContext.check_hostname and server name
indication for TLS/SSL connections.
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 07f8668..39785a7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #19781: ftplib now supports SSLContext.check_hostname and server name
+ indication for TLS/SSL connections.
+
- Issue #19509: Add SSLContext.check_hostname to match the peer's certificate
with server_hostname on handshake.