2014-11-30 03:43:30 +00:00
|
|
|
try:
|
2019-10-27 12:41:22 +00:00
|
|
|
from collections import OrderedDict # noqa
|
2014-11-30 03:43:30 +00:00
|
|
|
except ImportError:
|
|
|
|
# python 2.6 or earlier, use backport
|
2019-10-27 12:41:22 +00:00
|
|
|
from ordereddict import OrderedDict # noqa
|
2019-12-10 13:51:13 +00:00
|
|
|
|
|
|
|
try:
|
2019-12-17 16:05:52 +00:00
|
|
|
import collections.abc as collections_abc # noqa
|
2019-12-10 13:51:13 +00:00
|
|
|
except ImportError:
|
2019-12-17 16:05:52 +00:00
|
|
|
import collections as collections_abc # noqa
|