summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/editorconfig/compat.py
blob: 4b9f8ca9e4b170e058f409ee9a6baac816662123 (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
"""EditorConfig Python2/Python3 compatibility utilities"""
import sys


__all__ = ['force_unicode', 'u']


if sys.version_info[0] == 2:
    text_type = unicode
else:
    text_type = str


def force_unicode(string):
    if not isinstance(string, text_type):
        string = text_type(string, encoding='utf-8')
    return string


if sys.version_info[0] == 2:
    import codecs
    u = lambda s: codecs.unicode_escape_decode(s)[0]
else:
    u = lambda s: s