summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-06-11 16:15:00 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-06-11 16:15:00 (GMT)
commit9bd85b83f66d31e39282244e455275bd9cd91bb1 (patch)
treef66a844daa9f876509c1bc53cbeee2da15a09eb7 /Misc
parentd35bf032840bcbf130a146eb35e332f9fa925cd9 (diff)
downloadcpython-9bd85b83f66d31e39282244e455275bd9cd91bb1.zip
cpython-9bd85b83f66d31e39282244e455275bd9cd91bb1.tar.gz
cpython-9bd85b83f66d31e39282244e455275bd9cd91bb1.tar.bz2
Issue #27030: Unknown escapes consisting of ``'\'`` and ASCII letter in
regular expressions now are errors.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9e95932..b5cf314 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,6 +38,9 @@ Core and Builtins
Library
-------
+- Issue #27030: Unknown escapes consisting of ``'\'`` and ASCII letter in
+ regular expressions now are errors.
+
- Issue #27186: Add os.PathLike support to DirEntry (part of PEP 519).
Initial patch by Jelle Zijlstra.