You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
455 B
Python
24 lines
455 B
Python
8 years ago
|
"""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
|