summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-11-12 12:36:02 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-11-12 12:36:02 (GMT)
commitbabe4f8e5ede1f9a6f4206b97c303c8d33346b3b (patch)
treeb03b28f2949c53937c2a9d6f97c09f8143c2a776 /Misc
parent2d6c17936e426fd1417494fc5f0dcce548aad885 (diff)
parent6b4b6e956eaaff272fa4ffe0221a9cc8ef07882f (diff)
downloadcpython-babe4f8e5ede1f9a6f4206b97c303c8d33346b3b.zip
cpython-babe4f8e5ede1f9a6f4206b97c303c8d33346b3b.tar.gz
cpython-babe4f8e5ede1f9a6f4206b97c303c8d33346b3b.tar.bz2
Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
when decode astral characters.
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 24810f0..73247ee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 4
Core and Builtins
-----------------
+- Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
+ when decode astral characters. Patch by Xiang Zhang.
+
- Issue #19398: Extra slash no longer added to sys.path components in case of
empty compile-time PYTHONPATH components.