From 672b8031a803fa420cac91cdaab02130c1f8bed0 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 11 Jun 2008 19:14:14 +0000 Subject: Merged revisions 64125 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r64125 | benjamin.peterson | 2008-06-11 12:27:50 -0500 (Wed, 11 Jun 2008) | 2 lines give the threading API PEP 8 names ........ --- Lib/multiprocessing/queues.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/multiprocessing/queues.py') diff --git a/Lib/multiprocessing/queues.py b/Lib/multiprocessing/queues.py index fb6cb6d24b0..1c32dde647d 100644 --- a/Lib/multiprocessing/queues.py +++ b/Lib/multiprocessing/queues.py @@ -155,7 +155,7 @@ class Queue(object): self._wlock, self._writer.close), name='QueueFeederThread' ) - self._thread.setDaemon(True) + self._thread.set_daemon(True) debug('doing self._thread.start()') self._thread.start() -- cgit v1.2.3