]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
remove empty __del__ method from BaseRequestHandler to avoid cyclic garbage
authorSkip Montanaro <skip@pobox.com>
Wed, 3 Oct 2001 12:21:23 +0000 (12:21 +0000)
committerSkip Montanaro <skip@pobox.com>
Wed, 3 Oct 2001 12:21:23 +0000 (12:21 +0000)
loss for no reason.

Lib/SocketServer.py

index 6e1f78ae1e183a5c4b117bf88b6c0484039b6d71..00064ba89680dfa37ad6f78fe4216a8cb0b735ea 100644 (file)
@@ -506,9 +506,6 @@ class BaseRequestHandler:
     def setup(self):
         pass
 
-    def __del__(self):
-        pass
-
     def handle(self):
         pass