summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-25 10:17:33 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-25 10:17:33 +0300
commitc4a3e90aa8903d35a7b07e751a878fbd8326799e (patch)
treef12630f5b09c33626d1652914b0096caa9e3b922 /Misc
parentb1f52879528283483b26a11b24b306c90db1169d (diff)
parent839023f12cd589a25e7e9e2ee1ed64485ab45fd9 (diff)
downloadcpython-git-c4a3e90aa8903d35a7b07e751a878fbd8326799e.tar.gz
Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build.
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 e5d77af5f4..563f0c0a46 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 3
Core and Builtins
-----------------
+- Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug
+ build.
+
- Issue #28517: Fixed of-by-one error in the peephole optimizer that caused
keeping unreachable code.