Skip to content

Instantly share code, notes, and snippets.

@adoc
Created June 18, 2014 20:41
Show Gist options
  • Save adoc/f7eee413486c7cad07d5 to your computer and use it in GitHub Desktop.
Save adoc/f7eee413486c7cad07d5 to your computer and use it in GitHub Desktop.
Python 2.x `range` replacement
try:
range = xrange
log.warning("Replacing `range` with `xrange`.")
except NameError:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment