18 lines
534 B
Python
Raw Permalink Normal View History

import sys
from libs.constants import DEFAULT_ENCODING
def ustr(x):
"""py2/py3 unicode helper"""
if sys.version_info < (3, 0, 0):
from PyQt4.QtCore import QString
if type(x) == str:
return x.decode(DEFAULT_ENCODING)
if type(x) == QString:
# https://blog.csdn.net/friendan/article/details/51088476
# https://blog.csdn.net/xxm524/article/details/74937308
2019-01-04 12:02:26 +08:00
return unicode(x.toUtf8(), DEFAULT_ENCODING, 'ignore')
return x
else:
return x