summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-09 22:38:00 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-09 22:38:00 (GMT)
commitee18b6f2fda4afcdd1a22adb5b0637019510907b (patch)
tree0c2edfbffca2241eb3b42afb41adf0fc4002f886 /Misc
parent4755ab010f18863e305bbd17bbc16b7f39aed360 (diff)
downloadcpython-ee18b6f2fda4afcdd1a22adb5b0637019510907b.zip
cpython-ee18b6f2fda4afcdd1a22adb5b0637019510907b.tar.gz
cpython-ee18b6f2fda4afcdd1a22adb5b0637019510907b.tar.bz2
Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional
OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter!
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 951a136..9f4d9a8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -69,6 +69,8 @@ Core and Builtins
Library
-------
+- Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional.
+
- Issue #11164: Stop trying to use _xmlplus in the xml module.
- Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch