summaryrefslogtreecommitdiff
path: root/lib/compat.py
blob: cfd5a88fdb497d8b745850b5d0719f1817dea547 (plain)
1
2
3
4
5
6
7
8
9
10
import sys

if sys.version_info[0] == 2:
    # Python 2
    string_types = basestring,
    text_type = unicode
else:
    # Python 3
    string_types = str,
    text_type = str