summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/south/utils/py3.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/south/utils/py3.py')
-rw-r--r--lib/python2.7/site-packages/south/utils/py3.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/python2.7/site-packages/south/utils/py3.py b/lib/python2.7/site-packages/south/utils/py3.py
new file mode 100644
index 0000000..732e904
--- /dev/null
+++ b/lib/python2.7/site-packages/south/utils/py3.py
@@ -0,0 +1,28 @@
+"""
+Python 2 + 3 compatibility functions. This is a very small subset of six.
+"""
+
+import sys
+
+PY3 = sys.version_info[0] == 3
+
+if PY3:
+ string_types = str,
+ text_type = str
+ raw_input = input
+
+ import io
+ StringIO = io.StringIO
+
+else:
+ string_types = basestring,
+ text_type = unicode
+ raw_input = raw_input
+
+ import cStringIO
+ StringIO = cStringIO.StringIO
+
+
+def with_metaclass(meta, base=object):
+ """Create a base class with a metaclass."""
+ return meta("NewBase", (base,), {})