summaryrefslogtreecommitdiff
path: root/src/service_identity/_compat.py
blob: 65febe89adee3c07d5a5398bbeb0216ec4c4f6ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Avoid depending on any particular Python 3 compatibility approach.
"""

import sys


PY3 = sys.version_info[0] == 3
if PY3:  # pragma: nocover
    maketrans = bytes.maketrans
    text_type = str
else:  # pragma: nocover
    import string
    maketrans = string.maketrans
    text_type = unicode  # noqa