slightly change
authorOrakaro <nhatminh_179@hotmail.com>
Sat, 23 Aug 2014 05:05:01 +0000 (14:05 +0900)
committerOrakaro <nhatminh_179@hotmail.com>
Sat, 23 Aug 2014 05:05:01 +0000 (14:05 +0900)
docs/conf.py
rainbowstream/py3patch.py
rainbowstream/rainbow.py
setup.py

index 7b765b9dbeb6f75904c8a377b63e5ad353a4f9b0..552cbbe1a84e47ac9248972855fef25e6df6ad60 100644 (file)
@@ -48,9 +48,9 @@ copyright = u'2014, Vu Nhat Minh'
 # built documents.
 #
 # The short X.Y version.
 # built documents.
 #
 # The short X.Y version.
-version = '0.8.2'
+version = '0.8.3'
 # The full version, including alpha/beta/rc tags.
 # The full version, including alpha/beta/rc tags.
-release = '0.8.2'
+release = '0.8.3'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
index b19bdca01fe4cdbf40b8c18ba3bb5918e2e04736..4ba959110dd8a202f8c410cda9064317c5e3822b 100644 (file)
@@ -1,8 +1,6 @@
-"""
-  Python 3 supports
-"""
 import sys
 
 import sys
 
+# Library compatibility
 # StringIO module
 try:
     from StringIO import StringIO, BytesIO
 # StringIO module
 try:
     from StringIO import StringIO, BytesIO
@@ -20,7 +18,9 @@ unescape = HTMLParser().unescape
 # from html import unescape
 # but it is a far-future story:)
 
 # from html import unescape
 # but it is a far-future story:)
 
-# raw_input and map function behaviour
+
+# Function compatibility
+# xrange, raw_input, map ,unicde
 if sys.version[0] == "2":
     lmap = lambda f, a: map(f, a)
     str2u = lambda x: x.decode('utf-8')
 if sys.version[0] == "2":
     lmap = lambda f, a: map(f, a)
     str2u = lambda x: x.decode('utf-8')
index 1058b038f244ce6d755a884d53cdf2060a2929d6..03a3f1315f33b0f22a67d840638a4dda4550fe25 100644 (file)
@@ -1,6 +1,3 @@
-"""
-Colorful user's timeline stream
-"""
 import os
 import os.path
 import sys
 import os
 import os.path
 import sys
index 23e51f50d22b2356b5e260632b3598f8d7956ec7..4066ff16b0673010c794adbb2d7cf822600f2f72 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ import os
 import os.path
 
 # Bumped version
 import os.path
 
 # Bumped version
-version = '0.8.2'
+version = '0.8.3'
 
 # Require
 install_requires = [
 
 # Require
 install_requires = [