summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-11-22 14:22:49 (GMT)
committerFred Drake <fdrake@acm.org>2002-11-22 14:22:49 (GMT)
commit132e0e824b85c939fecfde6903718079756f9c61 (patch)
treefc96444ba7876e26b7ee2fca6178cb76ec2c5bec
parent62a103b2fc896f50b06e5386ae47302350cb3ace (diff)
downloadcpython-132e0e824b85c939fecfde6903718079756f9c61.zip
cpython-132e0e824b85c939fecfde6903718079756f9c61.tar.gz
cpython-132e0e824b85c939fecfde6903718079756f9c61.tar.bz2
Use False instead of 0.
-rw-r--r--Lib/SocketServer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py
index 1928ad2..4437581 100644
--- a/Lib/SocketServer.py
+++ b/Lib/SocketServer.py
@@ -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.