summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-10-17 17:28:30 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-10-17 17:28:30 (GMT)
commite4eda4d33f40e6e868d895915facc8c24265b584 (patch)
treef05ed0b3f28efb70ab5bcefd46269770d0573200 /Misc
parentc2c62b13ce512b5000cd659d08505be607fa7c4a (diff)
downloadcpython-e4eda4d33f40e6e868d895915facc8c24265b584.zip
cpython-e4eda4d33f40e6e868d895915facc8c24265b584.tar.gz
cpython-e4eda4d33f40e6e868d895915facc8c24265b584.tar.bz2
Issue #22638: SSLv3 is now disabled throughout the standard library.
It can still be enabled by instantiating a SSLContext manually.
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 fd502b6..d570430 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -178,6 +178,9 @@ Core and Builtins
Library
-------
+- Issue #22638: SSLv3 is now disabled throughout the standard library.
+ It can still be enabled by instantiating a SSLContext manually.
+
- Issue #22641: In asyncio, the default SSL context for client connections
is now created using ssl.create_default_context(), for stronger security.