I often test my module in the Python Interpreter, and when I see an error, I quickly update the .py file. But how do I make it reflect on the Interpreter ? So, far I have been exiting and reentering the Interpreter because re importing the file again is not working for me.
feedback
|
|
Use the reload builtin: http://docs.python.org/library/functions.html#reload
Example:
| |||||||||||||
feedback
|
Yes, just saying ‘import’ again gives you the existing copy of the module from sys.modules. You can say ‘reload(module)’ to update sys.modules and get a new copy of that single module, but if any other modules have a reference to the original module or any object from the original module, they will keep their old references and Very Confusing Things will happen. So if you've got a module ‘a’, which depends on module ‘b’, and b changes, you have to ‘reload b’ followed by ‘reload a’. If you've got two modules which depend on each other, which is extremely common when those modules are part of the same package, you can't reload them both: if you reload ‘p.a’ it'll get a reference to the old ‘p.b’, and vice versa. The only way to do it is to unload them both at once by deleting their items from sys.modules, before importing them again. This is icky and has some practical pitfalls to do with modules entries being None as a failed-relative-import marker. And if you've got a module which passes references to its objects to system modules — for example it registers a codec, or adds a warnings handler — you're stuck; you can't reload the system module without confusing the rest of the Python environment. In summary: for all but the simplest case of one self-contained module being loaded by one standalone script, reload() is very tricky to get right; if, as you imply, you are using a ‘package’, you will probably be better off continuing to cycle the interpreter. | |||
feedback
|
|
Basically reload as in allyourcode's asnwer. But it won't change underlying the code of already instantiated object or referenced functions. Extending from his answer:
| |||
|
feedback
|
|
See here for a good explanation of how your dependent modules won't be reloaded and the effects that can have: http://pyunit.sourceforge.net/notes/reloading.html The way pyunit solved it was to track dependent modules by overriding __import__ then to delete each of them from sys.modules and re-import. They probably could've just reload'ed them, though. | ||||
feedback
|
|
Short answer: try using reimport: a full featured reload for Python. Longer answer: It looks like this question was asked/answered prior to the release of reimport, which bills itself as a "full featured reload for Python":
Note: Although the | |||
|
feedback
|
|
Not sure if this does all expected things, but you can do just like that:
| |||
|
feedback
|