summaryrefslogtreecommitdiff
path: root/tests/compat.py
blob: 12d6ec0a298f00e6b82d0ab9ffbc0687bcfc2903 (plain)
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