ThirdParty/EditorConfig/editorconfig/compat.py

changeset 6099
a7fecbc392d7
child 6161
91456f5321b5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ThirdParty/EditorConfig/editorconfig/compat.py	Thu Feb 01 19:26:11 2018 +0100
@@ -0,0 +1,23 @@
+"""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

eric ide

mercurial