blob: ab54197bb38a5a00e083a0f893c8e5ee168275fe [file] [log] [blame]
"""
A stripped down version of six.py, containing only the bits we actually need.
Kept minimal so that OS package maintainers don't need to patch out six.py.
"""
import sys
PY3 = sys.version_info[0] == 3
if PY3:
string_types = str,
else:
string_types = basestring,