summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-11-12 12:35:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-11-12 12:35:46 (GMT)
commit6b4b6e956eaaff272fa4ffe0221a9cc8ef07882f (patch)
treec4dfce052c592d8f58cf05b1fdccc9e5fd415653 /Misc
parentae08687c3b4956f21e882593e215cf3f4bd5c904 (diff)
parent84293aff9fec20cb903bf1242c28404c671c56d1 (diff)
downloadcpython-6b4b6e956eaaff272fa4ffe0221a9cc8ef07882f.zip
cpython-6b4b6e956eaaff272fa4ffe0221a9cc8ef07882f.tar.gz
cpython-6b4b6e956eaaff272fa4ffe0221a9cc8ef07882f.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 6c9d0bc..42cab9b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
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.