summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-01 17:20:25 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-01 17:20:25 (GMT)
commitd8c347a8de9d7b76d0980ac18511667ab1cb2a4f (patch)
treeda515e94ccd1ef0045cd89af72afe48b193fd0ce /Misc
parent5a4a1096949335736ccad2b102fd91ebdd2e25b0 (diff)
downloadcpython-d8c347a8de9d7b76d0980ac18511667ab1cb2a4f.zip
cpython-d8c347a8de9d7b76d0980ac18511667ab1cb2a4f.tar.gz
cpython-d8c347a8de9d7b76d0980ac18511667ab1cb2a4f.tar.bz2
Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported.
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 2f6ef7f..f13fbe8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Core and Builtins
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.)