]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Use False instead of 0.
authorFred Drake <fdrake@acm.org>
Fri, 22 Nov 2002 14:22:49 +0000 (14:22 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 22 Nov 2002 14:22:49 +0000 (14:22 +0000)
Lib/SocketServer.py

index 1928ad2c048773c96dba085294c9e0c514088fa9..4437581dca13f1b2024959c8064a6791cc2d30a0 100644 (file)
@@ -451,7 +451,7 @@ class ThreadingMixIn:
 
     # Decides how threads will act upon termination of the
     # main process
-    daemon_threads = 0
+    daemon_threads = False
 
     def process_request_thread(self, request, client_address):
         """Same as in BaseServer but as a thread.