summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-02-09 22:08:17 (GMT)
committerGitHub <noreply@github.com>2018-02-09 22:08:17 (GMT)
commita445feb72902e4a3c5ae712f0c289309e1580d52 (patch)
tree5a4bbd53ad0fa579f9672370d469f6da000647ff /Misc
parent2411292ba8155327125d8a1da8a4c9fa003d5909 (diff)
downloadcpython-a445feb72902e4a3c5ae712f0c289309e1580d52.zip
cpython-a445feb72902e4a3c5ae712f0c289309e1580d52.tar.gz
cpython-a445feb72902e4a3c5ae712f0c289309e1580d52.tar.bz2
bpo-30688: Support \N{name} escapes in re patterns. (GH-5588)
Co-authored-by: Jonathan Eunice <jonathan.eunice@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2018-02-08-18-59-11.bpo-30688.zBh4TH.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index b31190c..ea1d941 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -441,6 +441,7 @@ Andy Eskilsson
André Espaze
Stefan Esser
Nicolas Estibals
+Jonathan Eunice
Carey Evans
Stephen D Evans
Tim Everett
diff --git a/Misc/NEWS.d/next/Library/2018-02-08-18-59-11.bpo-30688.zBh4TH.rst b/Misc/NEWS.d/next/Library/2018-02-08-18-59-11.bpo-30688.zBh4TH.rst
new file mode 100644
index 0000000..7d31680
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-02-08-18-59-11.bpo-30688.zBh4TH.rst
@@ -0,0 +1,2 @@
+Added support of ``\N{name}`` escapes in regular expressions. Based on
+patch by Jonathan Eunice.