# 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.
-"""
- Python 3 supports
-"""
import sys
+# Library compatibility
# StringIO module
try:
from StringIO import StringIO, BytesIO
# 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')