diff options
author | Harmon <Harmon758@gmail.com> | 2020-02-07 05:17:58 -0600 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-02-08 10:55:50 +0800 |
commit | ae7499f316770185d6e9795430fa907ca3f29679 (patch) | |
tree | 07bfdd7b965c37163da79a2245e218dba34905df /git/compat.py | |
parent | db4cb7c6975914cbdd706e82c4914e2cb2b415e7 (diff) | |
download | gitpython-ae7499f316770185d6e9795430fa907ca3f29679.tar.gz |
Remove compat.range
Diffstat (limited to 'git/compat.py')
-rw-r--r-- | git/compat.py | 2 |
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): |