diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-09-30 19:51:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-09-30 19:51:37 (GMT) |
commit | a4dfe1c9eaca6faf206f63a178233ffea208c906 (patch) | |
tree | 65a56aaf6c606b02231600d21ffde9bcc07609ab /Misc | |
parent | 9ef28b6ad3d5aff767e3d852499def8b5ae5ff5d (diff) | |
download | cpython-a4dfe1c9eaca6faf206f63a178233ffea208c906.zip cpython-a4dfe1c9eaca6faf206f63a178233ffea208c906.tar.gz cpython-a4dfe1c9eaca6faf206f63a178233ffea208c906.tar.bz2 |
[3.6] bpo-31592: Fix an assertion failure in Python parser in case of a bad unicodedata.normalize(). (GH-3767) (#3836)
(cherry picked from commit 7dc46d8cf5854d9f4ce3271b29c21aea4872e8ad)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2017-09-26-16-05-04.bpo-31592.IFBZj9.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-09-26-16-05-04.bpo-31592.IFBZj9.rst b/Misc/NEWS.d/next/Core and Builtins/2017-09-26-16-05-04.bpo-31592.IFBZj9.rst new file mode 100644 index 0000000..29f3461 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2017-09-26-16-05-04.bpo-31592.IFBZj9.rst @@ -0,0 +1,2 @@ +Fixed an assertion failure in Python parser in case of a bad `unicodedata.normalize()`. +Patch by Oren Milman. |