From 70ca0210e8958d2665541ddd38fce2965075674e Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sat, 16 Feb 2013 16:47:47 +0200 Subject: 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). --- Lib/sre_constants.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Lib/sre_constants.py') diff --git a/Lib/sre_constants.py b/Lib/sre_constants.py index 417670bf8d..71ccb23f62 100644 --- a/Lib/sre_constants.py +++ b/Lib/sre_constants.py @@ -15,10 +15,6 @@ MAGIC = 20031017 -# max code word in this release - -MAXREPEAT = 65535 - # SRE standard exception (access as sre.error) # should this really be here? -- cgit v1.2.1