eric6/ThirdParty/EditorConfig/editorconfig/compat.py

changeset 6942
2602857055c5
parent 6161
91456f5321b5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/ThirdParty/EditorConfig/editorconfig/compat.py	Sun Apr 14 15:09:21 2019 +0200
@@ -0,0 +1,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

eric ide

mercurial