summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-10-10 08:14:49 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-10-10 08:14:49 (GMT)
commite2ccf5608ca08f6b5adb8a3fd4d92bf9a450b0a8 (patch)
treec4d93f671b86fbe0f612997aa0941b07422a1f81 /Misc
parent5aa47443c60deb5cafbf6ad195bf49e364cbce4c (diff)
downloadcpython-e2ccf5608ca08f6b5adb8a3fd4d92bf9a450b0a8.zip
cpython-e2ccf5608ca08f6b5adb8a3fd4d92bf9a450b0a8.tar.gz
cpython-e2ccf5608ca08f6b5adb8a3fd4d92bf9a450b0a8.tar.bz2
Issue #19380: Optimized parsing of regular expressions.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c3932d7..4c8c559 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -166,7 +166,9 @@ Core and Builtins
Library
-------
-- Issue 1519638: Now unmatched groups are replaced with empty strings in re.sub()
+- Issue #19380: Optimized parsing of regular expressions.
+
+- Issue #1519638: Now unmatched groups are replaced with empty strings in re.sub()
and re.subn().
- Issue #18615: sndhdr.what/whathdr now return a namedtuple.