Created
February 28, 2014 10:22
-
-
Save vestel/9268671 to your computer and use it in GitHub Desktop.
Support several Python versions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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