datatracker/south/utils/py3.py
Ole Laursen 73f3ce0905 Replace South with South 0.8.4
- Legacy-Id: 6872
2013-12-11 14:07:19 +00:00

29 lines
516 B
Python

"""
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,), {})