15 lines
313 B
Python
15 lines
313 B
Python
import sys
|
|
|
|
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('utf-8')
|
|
if type(x) == QString:
|
|
return unicode(x)
|
|
return x
|
|
else:
|
|
return x # py3
|