From: Orakaro Date: Sat, 23 Aug 2014 05:05:01 +0000 (+0900) Subject: slightly change X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=95baa04465a42a304f9b96ab8e9b1e5ae695fa95;p=rainbowstream.git slightly change --- diff --git a/docs/conf.py b/docs/conf.py index 7b765b9..552cbbe 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ copyright = u'2014, Vu Nhat Minh' # built documents. # # The short X.Y version. -version = '0.8.2' +version = '0.8.3' # 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. diff --git a/rainbowstream/py3patch.py b/rainbowstream/py3patch.py index b19bdca..4ba9591 100644 --- a/rainbowstream/py3patch.py +++ b/rainbowstream/py3patch.py @@ -1,8 +1,6 @@ -""" - Python 3 supports -""" import sys +# Library compatibility # 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:) -# 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') diff --git a/rainbowstream/rainbow.py b/rainbowstream/rainbow.py index 1058b03..03a3f13 100644 --- a/rainbowstream/rainbow.py +++ b/rainbowstream/rainbow.py @@ -1,6 +1,3 @@ -""" -Colorful user's timeline stream -""" import os import os.path import sys diff --git a/setup.py b/setup.py index 23e51f5..4066ff1 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import os import os.path # Bumped version -version = '0.8.2' +version = '0.8.3' # Require install_requires = [