From: Fredrik Lundh Date: Thu, 27 Jun 2002 20:08:25 +0000 (+0000) Subject: made the code match the comments (1.5.2 compatibility) X-Git-Tag: v2.3c1~5185 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4fb7027ec00daa8c5f891888dedc1b387853c1e0;p=thirdparty%2FPython%2Fcpython.git made the code match the comments (1.5.2 compatibility) --- diff --git a/Lib/sre_compile.py b/Lib/sre_compile.py index 1c54f67a49c3..30957a827b08 100644 --- a/Lib/sre_compile.py +++ b/Lib/sre_compile.py @@ -10,7 +10,7 @@ """Internal support module for sre""" -import _sre,sys +import _sre, sys from sre_constants import * @@ -278,8 +278,8 @@ def _optimize_unicode(charset, fixup): new = comps.setdefault(chunk, block) mapping[i] = new if new == block: - block += 1 - data += _mk_bitmap(chunk) + block = block + 1 + data = data + _mk_bitmap(chunk) header = [block] assert MAXCODE == 65535 for i in range(128):