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