1
0

compat.py 166 B

12345678910
  1. __all__ = ['decode']
  2. def decode(s):
  3. '''Decode Python 3 bytes as str
  4. '''
  5. try:
  6. return s.decode()
  7. except AttributeError:
  8. return str(s)