Skip to content

Instantly share code, notes, and snippets.

@vestel
Created February 28, 2014 10:22
Show Gist options
  • Save vestel/9268671 to your computer and use it in GitHub Desktop.
Save vestel/9268671 to your computer and use it in GitHub Desktop.
Support several Python versions
try: from cStringIO import StringIO # cStringIO is faster, but not everywhere available
except ImportError:
try: from StringIO import StringIO # default, should work in any python 2 environement
except ImportError:
try: from io import StringIO # exception for python 3
except ImportError:
raise NotFoundDependencies # some strange version or problem with dependencies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment