Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.089 X-Spam-Evidence: '*H*': 0.84; '*S*': 0.02; 'params': 0.09; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:requests': 0.16; 'wrote:': 0.18; 'skip:" 20': 0.27; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'tim': 0.29; 'message- id:@mail.gmail.com': 0.30; 'chase': 0.31; 'fri,': 0.33; 'received:google.com': 0.35; 'thanks': 0.36; 'list': 0.37; 'skip:[ 10': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'fail.': 0.84; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=wmYit6kJNT6mHXqWIea7tPKV+xK7zl43gZy+fE0tRco=; b=pNlmSX31Iiis3m9pL1JHxXr7A/VXFSapGNEgYFLqvXEIrTQPQs9V06stNK2IsUPSTR IqO9pMEh42K+/Lav+bubk6Rnx8A48yUX021hGJVdyNktrWQJQCokEbS1h4ZOaHxBSH/i Wle/ays6e7YTWHT+c34xeD0LzZRSQfO4g/sfrnYpWHf5VkuAiM/z7l9YakJrX2nfNkwh 0FoBCYeYgUEvTic6f/XK+JTXlkICneNR+dPR8A/ze1wlp5Q5ArRY+mRQ2NY47J7yk7X5 eFk44eUjOI9Qk6iIVMu/7YsS52uzvq7WtWCIcmHdi9SD+sl3yGnBiE30sYCaz4K/L/54 9rTw== MIME-Version: 1.0 X-Received: by 10.68.21.66 with SMTP id t2mr1543857pbe.151.1380818564419; Thu, 03 Oct 2013 09:42:44 -0700 (PDT) In-Reply-To: <20131003114205.7f2cff96@bigbox.christie.dr> References: <6782f295-1885-4114-aea8-d785480f3489@googlegroups.com> <20131003114205.7f2cff96@bigbox.christie.dr> Date: Fri, 4 Oct 2013 02:42:44 +1000 Subject: Re: feature requests From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 13 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1380818574 news.xs4all.nl 15916 [2001:888:2000:d::a6]:43178 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:55423 On Fri, Oct 4, 2013 at 2:42 AM, Tim Chase wrote: > Do you mean > > workers = [Thread(params) for params in whatever] > for thrd in workers: thrd.start() > > ? ("Thread(params)" vs. "Thread(params).start()" in your list comp) Whoops, copy/paste fail. Yes, that's what I meant. Thanks for catching! ChrisA