summaryrefslogtreecommitdiff
path: root/git/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/compat.py')
-rw-r--r--git/compat.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/git/compat.py b/git/compat.py
index 19b46794..da500750 100644
--- a/git/compat.py
+++ b/git/compat.py
@@ -31,11 +31,6 @@ is_posix = (os.name == 'posix')
is_darwin = (os.name == 'darwin')
defenc = sys.getfilesystemencoding()
-if PY3:
- binary_type = bytes
-else:
- binary_type = str
-
def safe_decode(s):
"""Safely decodes a binary string to unicode"""