Skip to content

Instantly share code, notes, and snippets.

@photonxp
Last active August 29, 2015 13:57
Show Gist options
  • Save photonxp/9907408 to your computer and use it in GitHub Desktop.
Save photonxp/9907408 to your computer and use it in GitHub Desktop.
A nice way to judge python version by import statement:
https://github.com/facebook/tornado/blob/master/tornado/web.py
try:
from io import BytesIO # python 3
except ImportError:
from cStringIO import StringIO as BytesIO # python 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment