[Python-checkins] python/dist/src/Lib SocketServer.py,1.33,1.34

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Fri, 22 Nov 2002 06:22:52 -0800


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

Modified Files:
	SocketServer.py 
Log Message:
Use False instead of 0.


Index: SocketServer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/SocketServer.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** SocketServer.py	22 Nov 2002 08:08:43 -0000	1.33
--- SocketServer.py	22 Nov 2002 14:22:49 -0000	1.34
***************
*** 452,456 ****
      # Decides how threads will act upon termination of the
      # main process
!     daemon_threads = 0
  
      def process_request_thread(self, request, client_address):
--- 452,456 ----
      # Decides how threads will act upon termination of the
      # main process
!     daemon_threads = False
  
      def process_request_thread(self, request, client_address):