class test():
def __init__(self):
raise
def __del__(self):
print "__del__ called"
try:
test()
except:
pass
Yes.
Explanation: __del__ is called when the last reference to the object is removed. But if you do not catch the exception, __del__ will not be called because the python still keeps a reference to the object in the stack, and it's kept until the program exits in order to print the traceback. If you catch and handle the exception, the object is deleted as soon as the all the information relating to the exception is discarded from the stack.
Of course, __del__ is not guaranteed to run successfully if the program is about to quit, unless care is taken, and in some circumstances not even then -- see __del__ warning.
Addenum: Cédrik Julien said in his answer (now amended): "If __new__ raised an exception, your object won't be created and __del__ won't be called". This is not always right. Here's an example where __del__ is called even though the exception is raised in __new__:
class test():
def __new__(cls):
obj = object.__new__(cls)
raise
return obj
def __del__(self):
print "__del__ called"
So some exception occurred while we did some stuff to the test object obj before returning it. But since the object was already created, __del__ is called. The lesson is: in the __del__ method, don't assume anything that was supposed to happen after object.__new__() has in fact happened. Otherwise you could raise an exception trying to access a non-existing attribute or by relying on some other assumption that is not valid. The exception will be ignored, but whatever task __del__ was supposed to accomplish will fail as well.