xrange in python 3
authorOrakaro <nhatminh_179@hotmail.com>
Mon, 11 Aug 2014 14:28:29 +0000 (23:28 +0900)
committerOrakaro <nhatminh_179@hotmail.com>
Mon, 11 Aug 2014 14:28:29 +0000 (23:28 +0900)
docs/conf.py
rainbowstream/c_image.py
rainbowstream/draw.py
rainbowstream/pure_image.py
rainbowstream/py3patch.py
setup.py

index ac74b53744b27e50c299ee37a1916e5bf0529e62..e483b836924aa14d459275a1c7343688daef85ce 100644 (file)
@@ -48,9 +48,9 @@ copyright = u'2014, Vu Nhat Minh'
 # built documents.
 #
 # The short X.Y version.
-version = '0.7.2'
+version = '0.7.3'
 # The full version, including alpha/beta/rc tags.
-release = '0.7.2'
+release = '0.7.3'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
index 8bd93288812662f2ac19b074d8cce8071d050362..96cab29fd89aae50b0572e9aa33695f8f0b2d317 100644 (file)
@@ -1,6 +1,7 @@
 from PIL import Image
 from os.path import join, dirname, getmtime, exists, expanduser
 from .config import *
+from .py3patch import *
 
 import ctypes
 import sys
@@ -49,9 +50,9 @@ def image_to_display(path, start=None, length=None):
     i = i.resize((width, height), Image.ANTIALIAS)
     height = min(height, c['IMAGE_MAX_HEIGHT'])
 
-    for y in range(height):
+    for y in xrange(height):
         sys.stdout.write(' ' * start)
-        for x in range(width):
+        for x in xrange(width):
             p = i.getpixel((x, y))
             r, g, b = p[:3]
             pixel_print(rgb2short(r, g, b))
index bae4106974ac171646efdda90b6d960783fac378..b4f5883959a969891148c900dcc570f31dadb53c 100644 (file)
@@ -235,7 +235,7 @@ def draw(t, keyword=None, check_semaphore=False, fil=[], ig=[]):
     tweet = text.split()
     # Replace url
     if expanded_url:
-        for index in range(len(expanded_url)):
+        for index in xrange(len(expanded_url)):
             tweet = lmap(
                 lambda x: expanded_url[index]
                 if x == url[index]
index 0f0a377c3ac350efdf0dfbdc6aa12eda4724aa5d..8f027bd627fe0b62893076fd920de8bcaa12d982 100644 (file)
@@ -1,6 +1,7 @@
 from PIL import Image
 from functools import partial
 from .config import *
+from .py3patch import *
 
 import sys
 import os
@@ -313,7 +314,7 @@ def hex_to_rgb(value):
     """
     value = value.lstrip('#')
     lv = len(value)
-    return tuple(int(value[i:i + lv / 3], 16) for i in range(0, lv, lv / 3))
+    return tuple(int(value[i:i + lv / 3], 16) for i in xrange(0, lv, lv / 3))
 
 
 def rgb_to_hex(rgb):
index 153d10df737957063078e125dcb3777e7d46d9b6..660bd0bd29653784b6b49cd4bb31202b18e60e71 100644 (file)
@@ -25,6 +25,7 @@ if sys.version[0] == "2":
     lmap = lambda f, a: map(f, a)
     unc = lambda x: x.decode('utf-8')
 else:
+    xrange = range
     raw_input = input
     lmap = lambda f, a: list(map(f, a))
     unc = lambda x: x
index df66bb773a462894fa07bc1996020be1417f541b..2acfb8200b63dccef2913b85703ac2c845b5a7b1 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ import os
 import os.path
 
 # Bumped version
-version = '0.7.2'
+version = '0.7.3'
 
 # Require
 install_requires = [