summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-16 14:47:15 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-16 14:47:15 (GMT)
commite18e05cce92182e7f852e2d1569904190b8a9a40 (patch)
tree6a9b85ad22229c378de5f57e579c8b2296d5c5b0 /Misc/NEWS
parent94bf697b01f56b99bfd3edaf72b7f4893d80c122 (diff)
downloadcpython-e18e05cce92182e7f852e2d1569904190b8a9a40.zip
cpython-e18e05cce92182e7f852e2d1569904190b8a9a40.tar.gz
cpython-e18e05cce92182e7f852e2d1569904190b8a9a40.tar.bz2
Issue #13169: The maximal repetition number in a regular expression has been
increased from 65534 to 2147483647 (on 32-bit platform) or 4294967294 (on 64-bit).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b73f664..ee43643 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -205,6 +205,10 @@ Core and Builtins
Library
-------
+- Issue #13169: The maximal repetition number in a regular expression has been
+ increased from 65534 to 2147483647 (on 32-bit platform) or 4294967294 (on
+ 64-bit).
+
- Issue #16743: Fix mmap overflow check on 32 bit Windows.
- Issue #11311: StringIO.readline(0) now returns an empty string as all other