summaryrefslogtreecommitdiff
path: root/git/compat.py
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2020-02-07 05:17:58 -0600
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-02-08 10:55:50 +0800
commitae7499f316770185d6e9795430fa907ca3f29679 (patch)
tree07bfdd7b965c37163da79a2245e218dba34905df /git/compat.py
parentdb4cb7c6975914cbdd706e82c4914e2cb2b415e7 (diff)
downloadgitpython-ae7499f316770185d6e9795430fa907ca3f29679.tar.gz
Remove compat.range
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):