From: Michael W. Hudson Date: Tue, 24 Sep 2002 11:12:05 +0000 (+0000) Subject: backport effbot's checkin of X-Git-Tag: v2.2.2b1~139 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3a72159f4341ff096fe3f9a2ba39a8b758f42ac;p=thirdparty%2FPython%2Fcpython.git backport effbot's checkin of revision 1.43 of sre_compile.py made the code match the comments (1.5.2 compatibility) --- diff --git a/Lib/sre_compile.py b/Lib/sre_compile.py index e48be72285b4..1175f6731820 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):