diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-16 19:23:53 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-16 19:23:53 (GMT) |
commit | fa4681691591429466d18e21d7640e3703ab7f28 (patch) | |
tree | 91ef35df8dbbfcf6cab1a0ce75e4495dcdf2f826 /Misc | |
parent | 70ca0210e8958d2665541ddd38fce2965075674e (diff) | |
download | cpython-fa4681691591429466d18e21d7640e3703ab7f28.zip cpython-fa4681691591429466d18e21d7640e3703ab7f28.tar.gz cpython-fa4681691591429466d18e21d7640e3703ab7f28.tar.bz2 |
Issue #9669: Protect re against infinite loops on zero-width matching in
non-greedy repeat. Patch by Matthew Barnett.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -224,6 +224,9 @@ Core and Builtins Library ------- +- Issue #9669: Protect re against infinite loops on zero-width matching in + non-greedy repeat. Patch by Matthew Barnett. + - 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). |