commit | ae3b1258e48281fd44f48a0a93ff582ae57f6c70 | [log] [tgz] |
---|---|---|
author | Skip Montanaro <skip@pobox.com> | Wed Oct 03 12:21:23 2001 +0000 |
committer | Skip Montanaro <skip@pobox.com> | Wed Oct 03 12:21:23 2001 +0000 |
tree | 618aa27529bad5cd5d54664abde45c79e82864e0 | |
parent | f4593e0b657a29f93a74a578cb4d78aafdf384ea [diff] |
remove empty __del__ method from BaseRequestHandler to avoid cyclic garbage loss for no reason.
diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py index 6e1f78a..00064ba 100644 --- a/Lib/SocketServer.py +++ b/Lib/SocketServer.py
@@ -506,9 +506,6 @@ def setup(self): pass - def __del__(self): - pass - def handle(self): pass