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.
|
import six
|
|
|
|
|
|
def bytes_to_str(s, encoding='utf-8'):
|
|
"""Returns a str if a bytes object is given."""
|
|
if six.PY3 and isinstance(s, bytes):
|
|
return s.decode(encoding)
|
|
return s
|