commit | 70ca0210e8958d2665541ddd38fce2965075674e | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sat Feb 16 16:47:47 2013 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Sat Feb 16 16:47:47 2013 +0200 |
tree | f24e31538d932eebe73bdb07079096cabeb0e50a | |
parent | b19ed57d8d75b1183193558a9880db44b95157b3 [diff] [blame] |
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).
diff --git a/Lib/sre_compile.py b/Lib/sre_compile.py index f52ea01..46eac9c 100644 --- a/Lib/sre_compile.py +++ b/Lib/sre_compile.py
@@ -13,6 +13,7 @@ import _sre, sys import sre_parse from sre_constants import * +from _sre import MAXREPEAT assert _sre.MAGIC == MAGIC, "SRE module mismatch"