[Python-checkins] CVS: python/dist/src/Lib SocketServer.py,1.26,1.27

Skip Montanaro montanaro@users.sourceforge.net
Wed, 03 Oct 2001 05:21:26 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv28638

Modified Files:
	SocketServer.py 
Log Message:
remove empty __del__ method from BaseRequestHandler to avoid cyclic garbage
loss for no reason.


Index: SocketServer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/SocketServer.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** SocketServer.py	2001/07/24 20:34:08	1.26
--- SocketServer.py	2001/10/03 12:21:23	1.27
***************
*** 507,513 ****
          pass
  
-     def __del__(self):
-         pass
- 
      def handle(self):
          pass
--- 507,510 ----