summaryrefslogtreecommitdiff
path: root/git/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/compat.py')
-rw-r--r--git/compat.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/git/compat.py b/git/compat.py
index fde43ed4..374902cf 100644
--- a/git/compat.py
+++ b/git/compat.py
@@ -33,7 +33,6 @@ is_darwin = (os.name == 'darwin')
defenc = sys.getfilesystemencoding()
if PY3:
- range = xrange # @ReservedAssignment
unicode = str
binary_type = bytes
else:
@@ -41,7 +40,6 @@ else:
defenc = 'utf-8'
unicode = unicode
binary_type = str
- range = xrange # @ReservedAssignment
def safe_decode(s):