blob: 9d615a30833371a75571102e82924f90e6a0f1c9 [file] [log] [blame]
from six import PY2, PY3
if PY2:
import collections
container_abcs = collections
elif PY3:
import collections.abc
container_abcs = collections.abc