Merged revisions 65828 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r65828 | benjamin.peterson | 2008-08-18 13:31:58 -0500 (Mon, 18 Aug 2008) | 1 line

  patch up multiprocessing until it's API can be changed too
........
This commit is contained in:
Benjamin Peterson 2008-08-18 18:40:08 +00:00
parent 6640d72628
commit fae4c62b1a
4 changed files with 17 additions and 12 deletions

View file

@ -160,7 +160,7 @@ class Server(object):
except (OSError, IOError):
continue
t = threading.Thread(target=self.handle_request, args=(c,))
t.set_daemon(True)
t.daemon = True
t.start()
except (KeyboardInterrupt, SystemExit):
pass