summaryrefslogtreecommitdiff
path: root/src/service_identity/_compat.py
blob: 317b675b39e9dfdb923f3a916cb39b5c069dfd65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
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