diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-02-09 22:08:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-09 22:08:17 (GMT) |
commit | a445feb72902e4a3c5ae712f0c289309e1580d52 (patch) | |
tree | 5a4bbd53ad0fa579f9672370d469f6da000647ff /Misc | |
parent | 2411292ba8155327125d8a1da8a4c9fa003d5909 (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-02-08-18-59-11.bpo-30688.zBh4TH.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -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. |