How to reload a Python module that was imported in another file? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T07:26:19Zhttp://stackoverflow.com/feeds/question/1080521http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080521/how-to-reload-a-python-module-that-was-imported-in-another-file1How to reload a Python module that was imported in another file?aidave2009-07-03T19:13:42Z2009-07-03T19:24:48Z
<p>I am trying to learn how Python reloads modules, but have hit a roadblock.
Let's say I have:</p>
<p><code>dir1\file1.py</code>:</p>
<pre><code>from dir2.file2 import ClassOne
myObject = ClassOne()
</code></pre>
<p><code>dir1\dir2\file2.py</code>:</p>
<pre><code>class ClassOne():
def reload_module():
reload(file2)
</code></pre>
<p>The reload call fails to find module "file2".</p>
<p>My question is, how do I do this properly, without having to keep everything in one file?</p>
<p>A related question: When the reload does work, will myObject use the new code?</p>
<p>thank you</p>
http://stackoverflow.com/questions/1080521/how-to-reload-a-python-module-that-was-imported-in-another-file/1080534#10805342Answer by Alex Martelli for How to reload a Python module that was imported in another file?Alex Martelli2009-07-03T19:17:59Z2009-07-03T19:17:59Z<pre><code> def reload_module():
import file2
reload(file2)
</code></pre>
<p>However, this will <em>not</em> per se change the type of objects you've instantiated from classes held in the previous version of file2. The Python Cookbook 2nd edition has a recipe on how to accomplish such feats, and it's far too long and complex in both code and discussion to reproduce here (I believe you can read it on google book search, or failing that the original "raw" version [before all the enhancements we did to it], at least, should still be on the activestate cookbook online site).</p>