summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-04-16 16:56:28 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-04-16 16:56:28 (GMT)
commit94a5b663bf39a130fcd8b437aded6e7a7c396cff (patch)
tree01b283bc5fdd84e1855aa20d6ac409197faf1173 /Misc
parent0fba0c3ebfc8f5feed517783231bdff1e4a3e1a7 (diff)
downloadcpython-94a5b663bf39a130fcd8b437aded6e7a7c396cff.zip
cpython-94a5b663bf39a130fcd8b437aded6e7a7c396cff.tar.gz
cpython-94a5b663bf39a130fcd8b437aded6e7a7c396cff.tar.bz2
Issue #20896: ssl.get_server_certificate() now uses PROTOCOL_SSLv23, not PROTOCOL_SSLv3, for maximum compatibility.
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 6d4a6e4..2ebfe3f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,9 @@ Core and Builtins
Library
-------
+- Issue #20896: ssl.get_server_certificate() now uses PROTOCOL_SSLv23, not
+ PROTOCOL_SSLv3, for maximum compatibility.
+
- Issue #21239: patch.stopall() didn't work deterministically when the same
name was patched more than once.