In Python, how do you change an instantiated object after a reload? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T03:21:15Z http://stackoverflow.com/feeds/question/1080669 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload 3 In Python, how do you change an instantiated object after a reload? aidave 2009-07-03T20:03:07Z 2009-07-04T01:38:04Z <p>Let's say you have an object that was instantiated from a class inside a module. Now, you reload that module. The next thing you'd like to do is make that reload affect that class.</p> <pre><code>mymodule.py --- class ClassChange(): def run(self): print 'one' myexperiment.py --- import mymodule from mymodule import ClassChange # why is this necessary? myObject = ClassChange() myObject.run() &gt;&gt;&gt; one ### later, i changed this file, so that it says print 'two' reload(mymodule) # trick to change myObject needed here myObject.run() &gt;&gt;&gt; two </code></pre> <p>Do you have to make a new ClassChange object, copy myObject into that, and delete the old myObject? Or is there a simpler way?</p> <p>Edit: The run() method seems like a static class style method but that was only for the sake of brevity. I'd like the run() method to operate on data inside the object, so a static module function wouldn't do...</p> http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1080676#1080676 3 Answer by nosklo for In Python, how do you change an instantiated object after a reload? nosklo 2009-07-03T20:04:49Z 2009-07-03T20:04:49Z <p>You have to make a new object. There's no way to magically update the existing objects.</p> <p>Read the <a href="http://docs.python.org/library/functions.html#reload" rel="nofollow"><code>reload</code> builtin documentation</a> - it is very clear. Here's the last paragraph:</p> <blockquote> <p><em>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.</em></p> </blockquote> <p>There are other caveats in the documentation, so you really should read it, and consider alternatives. Maybe you want to start a new question with <strong>why</strong> you want to use <code>reload</code> and ask for other ways of achieving the same thing.</p> http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1080724#1080724 1 Answer by balpha for In Python, how do you change an instantiated object after a reload? balpha 2009-07-03T20:24:14Z 2009-07-03T20:24:14Z <p>The following code does what you want, but <strong>please don't use it</strong> (at least not until you're very sure you're doing the right thing), <strong>I'm posting it for explanation purposes only</strong>.</p> <p>mymodule.py:</p> <pre><code>class ClassChange(): @classmethod def run(cls,instance): print 'one',id(instance) </code></pre> <p>myexperiment.py:</p> <pre><code>import mymodule myObject = mymodule.ClassChange() mymodule.ClassChange.run(myObject) # change mymodule.py here reload(mymodule) mymodule.ClassChange.run(myObject) </code></pre> <p>When <strong>in your code</strong> you instanciate <code>myObject</code>, you get an instance of <code>ClassChange</code>. This instance has an <strong>instance method</strong> called <code>run</code>. The object keeps this instance method (for the reason explained by nosklo) even when reloading, because reloading only reloads the <em>class</em> <code>ClassChange</code>.</p> <p>In <strong>my code</strong> above, <code>run</code> is a <strong>class method</strong>. Class methods are always bound to and operate on the class, not the instance (which is why their first argument is usually called <code>cls</code>, not <code>self</code>). Wenn <code>ClassChange</code> is reloaded, so is this class method.</p> <p>You can see that I also pass the <em>instance</em> as an argument to work with the correct (same) instance of ClassChange. You can see that because the same object id is printed in both cases.</p> http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1080729#1080729 1 Answer by Tom for In Python, how do you change an instantiated object after a reload? Tom 2009-07-03T20:26:21Z 2009-07-03T21:15:37Z <p>I'm not sure if this is the best way to do it, or meshes with what you want to do... but this may work for you. If you want to change the behavior of a method, for all objects of a certain type... just use a function variable. For example:</p> <pre><code> def default_behavior(the_object): print "one" def some_other_behavior(the_object): print "two" class Foo(object): # Class variable: a function that has the behavior # (Takes an instance of a Foo as argument) behavior = default_behavior def __init__(self): print "Foo initialized" def method_that_changes_behavior(self): Foo.behavior(self) if __name__ == "__main__": foo = Foo() foo.method_that_changes_behavior() # prints "one" Foo.behavior = some_other_behavior foo.method_that_changes_behavior() # prints "two" # OUTPUT # Foo initialized # one # two </code></pre> <p>You can now have a class that is responsible for reloading modules, and after reloading, setting <code>Foo.behavior</code> to something new. I tried out this code. It works fine :-).</p> <p>Does this work for you?</p> http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1080984#1080984 5 Answer by Alex Martelli for In Python, how do you change an instantiated object after a reload? Alex Martelli 2009-07-03T21:59:27Z 2009-07-03T21:59:27Z <p>To update all instances of a class, it is necessary to keep track somewhere about those instances -- typically via weak references (weak value dict is handiest and general) so the "keeping track" functionality won't stop unneeded instances from going away, of course!</p> <p>You'd normally want to keep such a container in the class object, but, in this case, since you'll be reloading the module, getting the old class object is not trivial; it's simpler to work at module level.</p> <p>So, let's say that an "upgradable module" needs to define, at its start, a weak value dict (and an auxiliary "next key to use" int) with, say, conventional names:</p> <pre><code>import weakref class _List(list): pass # a weakly-referenceable sequence _objs = weakref.WeakValueDictionary() _nextkey = 0 def _register(obj): _objs[_nextkey] = List((obj, type(obj).__name__)) _nextkey += 1 </code></pre> <p>Each class in the module must have, typically in <code>__init__</code>, a call <code>_register(self)</code> to register new instances.</p> <p>Now the "reload function" can get the roster of all instances of all classes in this module by getting a copy of <code>_objs</code> before it reloads the module.</p> <p>If all that's needed is to change the <em>code</em>, then life is reasonably easy:</p> <pre><code>def reload_all(amodule): objs = getattr(amodule, '_objs', None) reload(amodule) if not objs: return # not an upgraable-module, or no objects newobjs = getattr(amodule, '_objs', None) for obj, classname in objs.values(): newclass = getattr(amodule, classname) obj.__class__ = newclass if newobjs: newobjs._register(obj) </code></pre> <p>Alas, one typically does want to give the new class a chance to upgrade an object of the old class to itself more finely, e.g. by a suitable class method. That's not too hard either:</p> <pre><code>def reload_all(amodule): objs = getattr(amodule, '_objs', None) reload(amodule) if not objs: return # not an upgraable-module, or no objects newobjs = getattr(amodule, '_objs', None) for obj, classname in objs: newclass = getattr(amodule, classname) upgrade = getattr(newclass, '_upgrade', None) if upgrade: upgrade(obj) else: obj.__class__ = newclass if newobjs: newobjs._register(obj) </code></pre> <p>For example, say the new version of class Zap has renamed an attribute from foo to bar. This could be the code of the new Zap:</p> <pre><code>class Zap(object): def __init__(self): _register(self) self.bar = 23 @classmethod def _upgrade(cls, obj): obj.bar = obj.foo del obj.foo obj.__class__ = cls </code></pre> <p>This is NOT all -- there's a LOT more to say on the subject -- but, it IS the gist, and the answer is WAY long enough already (and I, exhausted enough;-).</p> http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1081298#1081298 1 Answer by Unknown for In Python, how do you change an instantiated object after a reload? Unknown 2009-07-04T01:38:04Z 2009-07-04T01:38:04Z <p>There are tricks to make what you want possible.</p> <p>Someone already mentioned that you can have a class that keeps a list of its instances, and then changing the class of each instance to the new one upon reload.</p> <p>However, that is not efficient. A better method is to change the old class so that it is the same as the new class.</p> <p>Take a look at an old article I wrote which is probably the best you can do for a reload that will modify old objects.</p> <p><a href="http://www.codexon.com/posts/a-better-python-reload" rel="nofollow">http://www.codexon.com/posts/a-better-python-reload</a></p>