How do I correctly clean up a Python object? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:10:07Z http://stackoverflow.com/feeds/question/865115 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/865115/how-do-i-correctly-clean-up-a-python-object 2 How do I correctly clean up a Python object? wilhelmtell 2009-05-14T19:04:12Z 2009-05-14T20:20:04Z <pre><code>class Package: def __init__(self): self.files = [] # ... def __del__(self): for file in self.files: os.unlink(file) </code></pre> <p><code>__del__(self)</code> above fails with an AttributeError exception. I understand <a href="http://docs.python.org/reference/datamodel.html#customization" rel="nofollow">Python doesn't guarantee</a> the existence of "global variables" (member data in this context?) when <code>__del__()</code> is invoked. If that is the case and this is the reason for the exception, how do I make sure the object destructs properly?</p> http://stackoverflow.com/questions/865115/how-do-i-correctly-clean-up-a-python-object/865138#865138 0 Answer by Unknown for How do I correctly clean up a Python object? Unknown 2009-05-14T19:08:42Z 2009-05-14T20:20:04Z <p>Just wrap your destructor with a try/except statement and it will not throw an exception if your globals are already disposed of.</p> <p><strong>Edit</strong></p> <p>Try this:</p> <pre><code>from weakref import proxy class MyList(list): pass class Package: def __init__(self): self.__del__.im_func.files = MyList([1,2,3,4]) self.files = proxy(self.__del__.im_func.files) def __del__(self): print self.__del__.im_func.files </code></pre> <p>It will stuff the file list in the <strong>del</strong> function that is guaranteed to exist at the time of call. The weakref proxy is to prevent Python, or yourself from deleting the self.files variable somehow (if it is deleted, then it will not affect the original file list). If it is not the case that this is being deleted even though there are more references to the variable, then you can remove the proxy encapsulation.</p> http://stackoverflow.com/questions/865115/how-do-i-correctly-clean-up-a-python-object/865140#865140 2 Answer by Bastien Léonard for How do I correctly clean up a Python object? Bastien Léonard 2009-05-14T19:09:24Z 2009-05-14T19:09:24Z <p>It seems that the idiomatic way to do this is to provide a <code>close()</code> method (or similar), and call it explicitely.</p> http://stackoverflow.com/questions/865115/how-do-i-correctly-clean-up-a-python-object/865272#865272 10 Answer by Clint Miller for How do I correctly clean up a Python object? Clint Miller 2009-05-14T19:39:56Z 2009-05-14T19:39:56Z <p>I'd recommend using Python's with statement for managing resources that need to be cleaned up. The problem with using an explicit close() statement is that you have to worry about people forgetting to call it or forgetting to call it in a finally block so that resources are leaked when an exception occurs.</p> <p>To use the with statement, create a class with the following methods:</p> <pre><code> def __enter__(self) def __exit__(self, type, value, traceback) </code></pre> <p>In your example above, you'd use </p> <pre><code>class Package: def __init__(self): self.files = [] def __enter__(self): return self # ... def __exit__(self, type, value, traceback) for file in self.files: os.unlink(file) </code></pre> <p>Then, when someone wanted to use your class, they'd do the following:</p> <pre><code>with Package() as package_obj: # use package_obj </code></pre> <p>The variable package_obj will be an instance of type Package (it's the value returned by the enter method). It's exit method will automatically be called, regardless of whether or not an exception occurs.</p> <p>You could even take this approach a step further. In the example above, someone could still instantiate Package using its constructor without using the with clause. You don't want that to happen. You can fix this by creating a PackageResource class that defines the enter and exit methods. Then, the Package class would be defined strictly inside the enter method and returned. That way, the caller never could instantiate the Package class without using a with statement:</p> <pre><code>class PackageResource: def __enter__(self): class Package: ... self.package_obj = Package() return self.package_obj def __exit__(self, type, value, traceback): self.package_obj.cleanup() </code></pre> <p>You'd use this as follows:</p> <pre><code>with PackageResource() as package_obj: # use package_obj </code></pre> http://stackoverflow.com/questions/865115/how-do-i-correctly-clean-up-a-python-object/865354#865354 0 Answer by Virgil Dupras for How do I correctly clean up a Python object? Virgil Dupras 2009-05-14T19:51:55Z 2009-05-14T19:51:55Z <p>I don't think that it's possible for instance members to be removed before <code>__del__</code> is called. My guess would be that the reason for your particular AttributeError is somewhere else (maybe you mistakenly remove self.file elsewhere).</p> <p>However, as the others pointed out, you should avoid using <code>__del__</code>. The main reason for this is that instances with <code>__del__</code> will not be garbage collected (they will only be freed when their refcount reaches 0). Therefore, if your instances are involved in circular references, they will live in memory for as long as the application run. (I may be mistaken about all this though, I'd have to read the gc docs again, but I'm rather sure it works like this).</p>