diff options
author | Fred Drake <fdrake@acm.org> | 2002-11-22 14:22:49 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-11-22 14:22:49 (GMT) |
commit | 132e0e824b85c939fecfde6903718079756f9c61 (patch) | |
tree | fc96444ba7876e26b7ee2fca6178cb76ec2c5bec /Lib/SocketServer.py | |
parent | 62a103b2fc896f50b06e5386ae47302350cb3ace (diff) | |
download | cpython-132e0e824b85c939fecfde6903718079756f9c61.zip cpython-132e0e824b85c939fecfde6903718079756f9c61.tar.gz cpython-132e0e824b85c939fecfde6903718079756f9c61.tar.bz2 |
Use False instead of 0.
Diffstat (limited to 'Lib/SocketServer.py')
-rw-r--r-- | Lib/SocketServer.py | 2 |
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. |