1 2 3 4 5 6 7 8 9 10 11 12
# flake8: noqa import sys PY3 = sys.version_info[0] == 3 if PY3: string_types = str, text_type = str else: string_types = basestring, text_type = unicode