From a3a72159f4341ff096fe3f9a2ba39a8b758f42ac Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Tue, 24 Sep 2002 11:12:05 +0000 Subject: [PATCH] backport effbot's checkin of revision 1.43 of sre_compile.py made the code match the comments (1.5.2 compatibility) --- Lib/sre_compile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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): -- 2.47.3