Make ordereddict a direct dependency.

This commit is contained in:
Anthony Sottile 2014-06-17 06:59:13 -07:00
parent 203c554734
commit a984a02c84
8 changed files with 17 additions and 11 deletions

View file

@ -0,0 +1,7 @@
from __future__ import absolute_import
from __future__ import unicode_literals
try:
from collections import OrderedDict # noqa
except ImportError: # pragma: no cover (PY26)
from ordereddict import OrderedDict # noqa