Open GoogleCodeExporter opened 8 years ago
Confirmed, changing the re code like this, fixes it for 2.6.
Outside the for loop:
re1 = re.compile('(.).', flags=re.DOTALL)
re2 = re.compile('.(.)', flags=re.DOTALL)
Inside the for loop:
color += re1.sub(lambda m: m.group(1),line)
alpha += re2.sub(lambda m: m.group(1),line)
Same deal on the next set:
re1 = re.compile('(.{3}).', flags=re.DOTALL)
re2 = re.compile('.{3}(.)', flags=re.DOTALL)
color += re1.sub(lambda m: m.group(1),line)
alpha += re2.sub(lambda m: m.group(1),line)
Original comment by tha...@diacakis.com
on 18 Jan 2013 at 4:48
Issue 47 has been merged into this issue.
Original comment by reingart@gmail.com
on 14 Feb 2013 at 6:31
Original issue reported on code.google.com by
tha...@diacakis.com
on 18 Jan 2013 at 4:36