Skip to content

Instantly share code, notes, and snippets.

@lambdamusic
Created February 7, 2013 21:28
Show Gist options
  • Save lambdamusic/4734403 to your computer and use it in GitHub Desktop.
Save lambdamusic/4734403 to your computer and use it in GitHub Desktop.
Python: Reload code in console
import test
test.answer_to_life_the_universe_and_everything
# Whoops that's not right, I'd better edit the module....
reload(test)
test.answer_to_life_the_universe_and_everything
842
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment