You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/pkginfo/_compat.py

35 lines
885 B

try:
STRING_TYPES = (str, unicode)
except NameError: #pragma NO COVER Python >= 3.0
STRING_TYPES = (str,)
try:
u = unicode
except NameError: #pragma NO COVER Python >= 3.0
u = str
b = bytes
else: #pragma NO COVER Python < 3.0
b = str
try:
from StringIO import StringIO
except ImportError: #pragma NO COVER Python >= 3.0
from io import StringIO
from io import BytesIO
else: #pragma NO COVER Python < 3.0
BytesIO = StringIO
def must_decode(value): #pragma NO COVER
if type(value) is bytes:
try:
return value.decode('utf-8')
except UnicodeDecodeError:
return value.decode('latin1')
return value
def must_encode(value): #pragma NO COVER
if type(value) is u:
return value.encode('utf-8')
return value