From 13ac9926ac43d3bff39a08301696105208774b6e Mon Sep 17 00:00:00 2001 From: Fredrik Lundh Date: Sat, 7 Oct 2000 17:38:23 +0000 Subject: Fixed too ambitious "nothing to repeat" check. Closes bug #114033. --- Lib/sre_parse.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'Lib/sre_parse.py') diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py index 9cbbc0254e..7c36d4f2dc 100644 --- a/Lib/sre_parse.py +++ b/Lib/sre_parse.py @@ -12,8 +12,6 @@ import string, sys from sre_constants import * -MAXREPEAT = 65535 - SPECIAL_CHARS = ".\\[{()*+?^$|" REPEAT_CHARS = "*+?{" -- cgit v1.2.1