I\'m debugging from the python console and would like to reload a module every time I make a change so I don\'t have to exit the console and re-enter it. I\'m doing:
As of Python 3.4 you can use importlib.reload(module)
>>> from importlib import reload >>> from project.model import user >>> reload(user)