]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add news item about _sre.compile() re-bytecode validator.
authorGuido van Rossum <guido@python.org>
Sat, 9 Aug 2008 14:55:34 +0000 (14:55 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 9 Aug 2008 14:55:34 +0000 (14:55 +0000)
Misc/NEWS

index c3e1bb42d94d6e160653af317f31fdef0b875e16..cabee7f6de26d09e37b6d9d4b7f2597ad6bca478 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,10 @@ Core and Builtins
 Library
 -------
 
+- Issue #3487: sre "bytecode" validator.  Passing invalid "re-bytecode"
+  to _sre.compile() will now be rejected.  This should not affect anybody
+  since the re.compile() function never generates invalid re-bytecode.
+
 - Issue #3436: Make csv.DictReader's fieldnames attribute a property so that
   upon first access it can be automatically initialized from the csv file if
   it wasn't initialized during instantiation.