diff options
author | Oren Milman <orenmn@gmail.com> | 2017-09-30 17:16:24 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-09-30 17:16:24 (GMT) |
commit | 7dc46d8cf5854d9f4ce3271b29c21aea4872e8ad (patch) | |
tree | 65d6f6876bfd7c627d9090e1bfadf24b99c970a8 /Misc | |
parent | f4ea642cb60556231e714089a79d3c59c202661e (diff) | |
download | cpython-7dc46d8cf5854d9f4ce3271b29c21aea4872e8ad.zip cpython-7dc46d8cf5854d9f4ce3271b29c21aea4872e8ad.tar.gz cpython-7dc46d8cf5854d9f4ce3271b29c21aea4872e8ad.tar.bz2 |
bpo-31592: Fix an assertion failure in Python parser in case of a bad unicodedata.normalize(). (#3767)
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. |