arrow
[rainbowstream.git] / rainbowstream / py3patch.py
index 153d10df737957063078e125dcb3777e7d46d9b6..b19bdca01fe4cdbf40b8c18ba3bb5918e2e04736 100644 (file)
@@ -23,8 +23,10 @@ unescape = HTMLParser().unescape
 # 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')
+    str2u = lambda x: x.decode('utf-8')
+    u2str = lambda x: x.encode('utf-8')
 else:
+    xrange = range
     raw_input = input
     lmap = lambda f, a: list(map(f, a))
-    unc = lambda x: x
+    str2u = u2str = lambda x: x