summaryrefslogtreecommitdiff
path: root/pykwalify/compat.py
blob: d1f669dc4eac06856d7319d646ce824a9ac7263b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-

# python stdlib
import sys

# 3rd party imports
from ruamel import yaml  # NOQA: F401

# Build our global yml object that will be used in all other operations in the code
yml = yaml.YAML(typ='safe', pure=True)


if sys.version_info[0] < 3:
    # Python 2.x.x series
    basestring = basestring  # NOQA: F821
    unicode = unicode    # NOQA: F821
    bytes = str    # NOQA: F821

    def u(x):
        """ """
        return x.decode()

    def b(x):
        """ """
        return x

    def nativestr(x):
        """ """
        return x if isinstance(x, str) else x.encode('utf-8', 'replace')
else:
    # Python 3.x.x series
    basestring = str  # NOQA: F821
    unicode = str  # NOQA: F821
    bytes = bytes  # NOQA: F821

    def u(x):
        """ """
        return x

    def b(x):
        """ """
        return x.encode('latin-1') if not isinstance(x, bytes) else x

    def nativestr(x):
        """ """
        return x if isinstance(x, str) else x.decode('utf-8', 'replace')