summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-06-11 16:24:24 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-06-11 16:24:24 (GMT)
commite6dae877dc119faadeae1df5a2792e3a02b66f7d (patch)
tree9ab5178559929e33883eefa4bad904efa064fb77
parent9bd85b83f66d31e39282244e455275bd9cd91bb1 (diff)
downloadcpython-e6dae877dc119faadeae1df5a2792e3a02b66f7d.zip
cpython-e6dae877dc119faadeae1df5a2792e3a02b66f7d.tar.gz
cpython-e6dae877dc119faadeae1df5a2792e3a02b66f7d.tar.bz2
Issue #27030: The re.LOCALE flag now can be used only with bytes patterns.
(Just updated NEWS.)
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b5cf314..ee45989 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,7 +39,8 @@ Library
-------
- 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.