del self vs self.__del__() - and what is the proper way to cleanup in python?

老子叫甜甜 提交于 2020-05-13 05:57:48

问题


I have a python script that contains a class.

This class has a __del__ method for usual cleanup. If I delete the class during the normal execution of the script, I want some cleanup to be done.

I also have a signal handler, that does some unusual cleanup. If the script was in the middle of executing something else when it received the signal, it needs to do some extra cleanup, followed by the regular cleanup.

I noticed there is a difference between doing del self and self.__del__().

Namely, self.__del__() calls the del method twice.

Can you please explain why this happens?

This is a mockup script to illustrate the issue:

import sys
import signal
from optparse import OptionParser


class TestClass(object):
    def __init__(self,
                 del_self):
        self.del_self = del_self

        print "__init__ with del_self = %s" % self.del_self

    def __del__(self):
        print "Now performing usual cleanup."

    def signal_handler(self, arg_1, arg_2):
        print "Received signal. Now performing unusual cleanup."

        # Unusual cleanup

        print "Did unusual cleanup"

        if self.del_self:
            print("Doing del self")
            del self
        else:
            print("Doing self.__del__()")
            self.__del__()

        sys.exit(0)


if __name__ == '__main__':
    arguments = sys.argv[1:]
    parse = OptionParser("Test.")
    parse.add_option(
        "-d",
        "--delself",
        help="Set del self.",
        type="int",
        default=1
    )

    (options, _) = parse.parse_args()

    print "Options: %s" % options

    tc = TestClass(del_self=options.delself)

    signal.signal(signal.SIGQUIT, tc.signal_handler)

    while True:
        pass

If I ran the script with:

python deltest.py --delself 1

And issue killall -3 python I get:

Received signal. Now performing unusual cleanup.
Did unusual cleanup
Doing del self
Now performing usual cleanup.

Where as, if I do python deltest.py --delself 0 again followed by the kill signal, i get:

Received signal. Now performing unusual cleanup.
Did unusual cleanup
Doing self.__del__()
Now performing usual cleanup.
Now performing usual cleanup.

Why is the __del__ method executed twice in this case?

Thanks!


回答1:


del self does almost nothing -- it only deletes the local variable that is named self. But as that isn't the last reference to the instance (whatever called this method also still has a reference, at least) the object will continue to exist.

Calling __del__ manually also achieves nothing except for running that method; it doesn't delete anything.

What does work is removing the last reference to an object: in this case, del tc inside the main method would have remove that last reference, as far as I can see. Then the object would have been garbage collected, and then Python calls __del__.

So that's why __del__ happens twice: one time when you call it manually as a normal function, and one time when the object is garbage collected when the program ends.



来源:https://stackoverflow.com/questions/41765687/del-self-vs-self-del-and-what-is-the-proper-way-to-cleanup-in-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!