From: R David Murray Date: Fri, 17 Oct 2014 23:32:08 +0000 (-0400) Subject: Merge: #21991: make headerregistry params property MappingProxyType. X-Git-Tag: v3.5.0a1~637 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2ff243b3829d17b0a6a9ac5eab0c522f517f466;p=python Merge: #21991: make headerregistry params property MappingProxyType. --- d2ff243b3829d17b0a6a9ac5eab0c522f517f466 diff --cc Misc/NEWS index 1aca6e7dff,e04f4cc02d..4316b75f58 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -181,9 -33,10 +181,13 @@@ Core and Builtin Library ------- + - Issue #21991: Make email.headerregistry's header 'params' attributes + be read-only (MappingProxyType). Previously the dictionary was modifiable + but a new one was created on each access of the attribute. + +- 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.