Fix collections abc import deprecation warning. (#1032)

* Fix collections abc import.
Prepare for 3.8 when it is deprecated.

* Fix Pyton 2.7 build.
main
Wolfgang Langner 6 years ago committed by Selwin Ong
parent 14db0ecd26
commit 7a6abb4738

@ -14,6 +14,9 @@ import importlib
import logging
import numbers
import sys
try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable
from .compat import as_text, is_python_version, string_types

Loading…
Cancel
Save