D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
proc
/
self
/
root
/
usr
/
local
/
lib64
/
python3.6
/
site-packages
/
srsly
/
msgpack
/
Filename :
util.py
back
Copy
from __future__ import unicode_literals try: unicode except NameError: unicode = str def ensure_bytes(string): """Ensure a string is returned as a bytes object, encoded as utf8.""" if isinstance(string, unicode): return string.encode('utf8') else: return string