From: Antoine Pitrou Date: Sat, 1 Oct 2011 17:22:30 +0000 (+0200) Subject: Issue #13034: When decoding some SSL certificates, the subjectAltName extension could... X-Git-Tag: v3.3.0a1~1405 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a02a12c517e69e457f4425aa5af6f55c36a6a39a;p=thirdparty%2FPython%2Fcpython.git Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. --- a02a12c517e69e457f4425aa5af6f55c36a6a39a diff --cc Misc/NEWS index 3d6b317abb3a,f13fbe8d3e9e..e07e3a742df8 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -294,25 -117,6 +294,28 @@@ Core and Builtin Library ------- ++- Issue #13034: When decoding some SSL certificates, the subjectAltName ++ extension could be unreported. ++ +- Issue #9871: Prevent IDLE 3 crash when given byte stings + with invalid hex escape sequences, like b'\x0'. + (Original patch by Claudiu Popa.) + +- Issue #12306: Expose the runtime version of the zlib C library as a constant, + ZLIB_RUNTIME_VERSION, in the zlib module. Patch by Torsten Landschoff. + +- Issue #12959: Add collections.ChainMap to collections.__all__. + +- Issue #8933: distutils' PKG-INFO files and packaging's METADATA files will + now correctly report Metadata-Version: 1.1 instead of 1.0 if a Classifier or + Download-URL field is present. + +- Issue #12567: Add curses.unget_wch() function. Push a character so the next + get_wch() will return it. + +- Issue #9561: distutils and packaging now writes egg-info files using UTF-8, + instead of the locale encoding. + - Issue #8286: The distutils command sdist will print a warning message instead of crashing when an invalid path is given in the manifest template.