summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-02-21 10:08:52 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-02-21 10:08:52 (GMT)
commita3369a524c6f862936c1d8a24e23c796aa91f2c7 (patch)
treef176fc626404d514a14cef2d95e5c784d1494b55 /Misc
parenta1543cdcd65d9a2be302be0da0cfb9c53c17f806 (diff)
downloadcpython-a3369a524c6f862936c1d8a24e23c796aa91f2c7.zip
cpython-a3369a524c6f862936c1d8a24e23c796aa91f2c7.tar.gz
cpython-a3369a524c6f862936c1d8a24e23c796aa91f2c7.tar.bz2
Issues #814253, #9179: Warnings now are raised when group references and
conditional group references are used in lookbehind assertions in regular expressions.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f1426d2..37ff72e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,10 @@ Core and Builtins
Library
-------
+- Issues #814253, #9179: Warnings now are raised when group references and
+ conditional group references are used in lookbehind assertions in regular
+ expressions.
+
- Issue #23215: Multibyte codecs with custom error handlers that ignores errors
consumed too much memory and raised SystemError or MemoryError.
Original patch by Aleksi Torhamo.