Merge pull request #38 from frasertweedale/fix/no-gcc
[rainbowstream.git] / rainbowstream / py3patch.py
index 05fe7ff469cba4ce2fc2307143dfba37000e2465..660bd0bd29653784b6b49cd4bb31202b18e60e71 100644 (file)
@@ -9,9 +9,23 @@ try:
 except:
     from io import StringIO, BytesIO
 
-# raw_input and map functiion behaviour
-if sys.version[0] == "3":
-    raw_input = input
-    lmap = lambda f, a: list(map(f, a))
+# HTMLParser module
+if sys.version[0] == "2":
+    from HTMLParser import HTMLParser
 else:
+    from html.parser import HTMLParser
+unescape = HTMLParser().unescape
+# According to https://github.com/python/cpython/blob/master/Lib/html/parser.py#L547 ,
+# in python 3.5 maybe I should use
+# from html import unescape
+# but it is a far-future story:)
+
+# raw_input and map function behaviour
+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