yaml extensions and ordereddict are now imported from asottile.

This commit is contained in:
Anthony Sottile 2014-04-12 16:12:10 -07:00
parent c0a0a21680
commit e58d28aad3
8 changed files with 18 additions and 99 deletions

View file

@ -1,10 +0,0 @@
from __future__ import absolute_import
# This module serves only as a shim for OrderedDict
try:
from collections import OrderedDict
except ImportError:
from ordereddict import OrderedDict
__all__ = (OrderedDict.__name__,)