From: Serhiy Storchaka Date: Sat, 12 Nov 2016 12:37:11 +0000 (+0200) Subject: Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X X-Git-Tag: v3.7.0a1~2003 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=616034eb736e9d1b45eefa2387b55a223d3bb0fd;p=python Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X when decode astral characters. --- 616034eb736e9d1b45eefa2387b55a223d3bb0fd diff --cc Misc/NEWS index 9909020aef,73247ee2f2..161de763e9 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,8 -10,9 +10,11 @@@ What's New in Python 3.7.0 alpha 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 #28665: Improve speed of the STORE_DEREF opcode by 40%. + - Issue #19398: Extra slash no longer added to sys.path components in case of empty compile-time PYTHONPATH components.