Files
Kenneth Reitz e4586a44f5 stuffs
2011-12-03 20:20:50 -05:00

23 lines
286 B
Python

# -*- coding: utf-8 -*-
"""
compat.funcs
~~~~~~~~~~~~
This module contains helper functions.
"""
from .flags import is_py2, is_py3
if is_py3:
from io import BytesIO
unicode = str
bytes = bytes
basestring = str
else:
from cStringIO import StringIO as BytesIO