Current Path : /proc/thread-self/root/proc/thread-self/root/proc/self/root/opt/cloudlinux/venv/lib64/python3.11/site-packages/gitdb/utils/ |
Current File : //proc/thread-self/root/proc/thread-self/root/proc/self/root/opt/cloudlinux/venv/lib64/python3.11/site-packages/gitdb/utils/encoding.py |
def force_bytes(data, encoding="utf-8"): if isinstance(data, bytes): return data if isinstance(data, str): return data.encode(encoding) return data def force_text(data, encoding="utf-8"): if isinstance(data, str): return data if isinstance(data, bytes): return data.decode(encoding) return str(data, encoding)