diff options
author | Skip Montanaro <skip@pobox.com> | 2001-10-03 12:21:23 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-10-03 12:21:23 (GMT) |
commit | ae3b1258e48281fd44f48a0a93ff582ae57f6c70 (patch) | |
tree | 618aa27529bad5cd5d54664abde45c79e82864e0 /Lib/SocketServer.py | |
parent | f4593e0b657a29f93a74a578cb4d78aafdf384ea (diff) | |
download | cpython-ae3b1258e48281fd44f48a0a93ff582ae57f6c70.zip cpython-ae3b1258e48281fd44f48a0a93ff582ae57f6c70.tar.gz cpython-ae3b1258e48281fd44f48a0a93ff582ae57f6c70.tar.bz2 |
remove empty __del__ method from BaseRequestHandler to avoid cyclic garbage
loss for no reason.
Diffstat (limited to 'Lib/SocketServer.py')
-rw-r--r-- | Lib/SocketServer.py | 3 |
1 files changed, 0 insertions, 3 deletions
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 @@ class BaseRequestHandler: def setup(self): pass - def __del__(self): - pass - def handle(self): pass |