summaryrefslogtreecommitdiff
path: root/git/odict.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2018-03-24 13:45:17 +0100
committerGitHub <noreply@github.com>2018-03-24 13:45:17 +0100
commitf3265bd8beb017890699d093586126ff8af4a3fe (patch)
treeccf02df66dbb979c7f6da6949456902a06aa1b1e /git/odict.py
parent9f12b26b81a8e7667b2a26a7878e5bc033610ed5 (diff)
parent80b038f8d8c7c67c148ebd7a5f7a0cb39541b761 (diff)
downloadgitpython-f3265bd8beb017890699d093586126ff8af4a3fe.tar.gz
Merge pull request #737 from hugovk/rm-2.6
Drop support for EOL Python 2.6 and 3.3
Diffstat (limited to 'git/odict.py')
-rw-r--r--git/odict.py10
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