vote up 0 vote down star

Is there a method that I can add to my module, which will get called when destructing the class?

Update: We have a simple class which has only static member functions and needs to clean up the database connection when unloading the module. was hoping there would be a __del__ method either for modules or classes that don't have instances?

flag

76% accept rate
What do you mean by "module deletion"? When do you think this happens? – S.Lott Jun 3 at 12:52
we have a simple class which has only static member functions and needs to clean up the database connection when unloading the module. was hoping there would be a del method either for modules or classes that don't have instances? – Dan Jun 3 at 14:12
@Dan: I have edited my answer based on this comment, please check it. – nosklo Jun 3 at 15:06
@Dan: Please update the question with new information; don't comment on your own question. Also, what is the use case for unloading a module? Why would you do this? – S.Lott Jun 3 at 17:35

3 Answers

vote up 2 vote down check

When destructing which class? I though you said module?

Your module lives until the interpreter stops. you can add something to run at that time using the "atexit" module:

import atexit
atexit.register(myfunction)


EDIT: Based on your comments.

Since you don't want it as a destructor, my answer above is correct. Just def another function (or static method if you wish) and register it with the atexit:

def close_database():
    proceed_to_close()

import atexit
atexit.register(close_database)

Now a quick note on your definition.

You said the class doesn't have any instances. So why make it a class? Why not define the functions in the module level instead? modules are first-class objects, cached and imported only once...

Example, instead of defining database.py:

class DataBase(object):
    @staticmethod
    def execute_some_query(query):
        code_here()
        some_code()
    @staticmethod
    def close_database():
        proceed_to_close()
import atexit ; atexit.register(DataBase.close_database)

and using:

from database import DataBase
DataBase.execute_some_query(query)

You could do this instead on database.py:

def execute_some_query(query):
    code_here()
    some_code()

def close_database():
    proceed_to_close()
import atexit ; atexit.register(close_database)

And use it like this:

import database
database.execute_some_query(query)


Or better yet: Use sqlalchemy and avoid all this trouble of creating your own database interface.

link|flag
vote up 1 vote down

The class destructor method you're looking for is __del__. There are some nuances to when it's called, and to how exceptions and subclassing should be handled in __del__, so be sure to read the official docs.

A quick note on terminology, too: in python a module is the file in which your code is located... a namespace, in essence. A single module can contain many classes, variables, and functions. The __del__ method is located on the class, not on the module.

link|flag
vote up -1 vote down

Use the del method:

class Foo:

    def __init__(self):
        print "constructor called."

    def __del__(self):
        print "destructor called."
link|flag
Be sure to read docs.python.org/reference/… – S.Lott Jun 3 at 12:06
init is not the constructor. If you use del it might be possible that the gc doesn't collect the object, so in general it is better to avoid del if you can. – DasIch Jun 3 at 12:25
init is not the constructor? I am confused... – cartman Jun 3 at 12:35
2  
Technically, the class's call is the constructor; it calls new. init is an initializer. A bunch of really subtle distinctions. – S.Lott Jun 3 at 12:54
Thanks S.Lott, indeed you are right. – cartman Jun 3 at 13:41
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.