Merge branch 'master' into develop

This commit is contained in:
Lance Stout 2012-12-18 10:33:33 -08:00
commit 29c049612a

View file

@ -8,7 +8,10 @@ def unicode(text):
text = text.decode('utf-8')
import __builtin__
return __builtin__.unicode(text)
return str(text)
elif not isinstance(text, str):
return text.decode('utf-8')
else:
return text
def bytes(text):
@ -148,4 +151,4 @@ def setdefaultencoding(encoding):
if func is None:
raise RuntimeError("Could not find setdefaultencoding")
sys.setdefaultencoding = func
return func(encoding)
return func(encoding)