diff options
author | Hugo <hugovk@users.noreply.github.com> | 2018-03-18 12:06:10 +0200 |
---|---|---|
committer | Hugo <hugovk@users.noreply.github.com> | 2018-03-18 22:26:04 +0200 |
commit | 929f3e1e1b664ed8cdef90a40c96804edfd08d59 (patch) | |
tree | 805c06bde21a6c4b3d9defe775527a3773bef3b9 /git/odict.py | |
parent | 190c04569bd2a29597065222cdcc322ec4f2b374 (diff) | |
download | gitpython-929f3e1e1b664ed8cdef90a40c96804edfd08d59.tar.gz |
Drop support for EOL Python 2.6
Diffstat (limited to 'git/odict.py')
-rw-r--r-- | git/odict.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/git/odict.py b/git/odict.py deleted file mode 100644 index f003d14e..00000000 --- a/git/odict.py +++ /dev/null @@ -1,10 +0,0 @@ -try: - from collections import OrderedDict -except ImportError: - try: - from ordereddict import OrderedDict - except ImportError: - import warnings - warnings.warn("git-python needs the ordereddict module installed in python below 2.6 and below.") - warnings.warn("Using standard dictionary as substitute, and cause reordering when writing git config") - OrderedDict = dict |