changeset: 101875:8ed3880e94e5 user: Serhiy Storchaka date: Sat Jun 11 19:24:24 2016 +0300 files: Misc/NEWS description: Issue #27030: The re.LOCALE flag now can be used only with bytes patterns. (Just updated NEWS.) diff -r 09d1af3fe332 -r 8ed3880e94e5 Misc/NEWS --- a/Misc/NEWS Sat Jun 11 19:15:00 2016 +0300 +++ b/Misc/NEWS Sat Jun 11 19:24:24 2016 +0300 @@ -39,7 +39,8 @@ ------- - Issue #27030: Unknown escapes consisting of ``'\'`` and ASCII letter in - regular expressions now are errors. + regular expressions now are errors. The re.LOCALE flag now can be used + only with bytes patterns. - Issue #27186: Add os.PathLike support to DirEntry (part of PEP 519). Initial patch by Jelle Zijlstra.