tags:

views:

523

answers:

1

I know it can be done, but I never remember how.

How can you reimport a module in python? The scenario is as follows: I import a module interactively and tinker with it, but then I face an error. I fix the error in the .py file and then I want to reimport the fixed module without quitting python. How can I do it ?

+13  A: 

This should work:

reload(my.module)

From the Python docs

Reload a previously imported module. The argument must be a module object, so it must have been successfully imported before. This is useful if you have edited the module source file using an external editor and want to try out the new version without leaving the Python interpreter.

piquadrat
thanks!________
Stefano Borini
**Don't forget the caveats of using this method** : When a module is reloaded, its dictionary (containing the module’s global variables) **is retained** . Redefinitions of names will override the old definitions, so this is generally not a problem. If the new version of a module does not define a name that was defined by the old version, the old definition remains.
nosklo
**Don't forget the caveats of using this method** : If a module imports objects from another module using `from ... import ...`, calling `reload()` for the other module **does not redefine the objects imported from it** — one way around this is to re-execute the `from` statement, another is to use `import` and qualified names (`module.*name*`) instead.
nosklo
**Don't forget the caveats of using this method** : If a module instantiates instances of a class, reloading the module that defines the class **does not affect the method definitions of the instances** — they **continue to use the *old* class definition**. The same is true for derived classes.
nosklo