lambdamusic
2/7/2013 - 9:28 PM

Python: Reload code in console

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