feature requests

Tim Chase python.list at tim.thechases.com
Thu Oct 3 12:42:05 EDT 2013


On 2013-10-04 02:21, Chris Angelico wrote:
> >         workers = []
> >         for params in whatever:
> >             thread = threading.Thread(params)
> >             thread.start()
> >             workers.append(thread)  
> 
> You could shorten this by iterating twice, if that helps:
> 
> workers = [Thread(params).start() for params in whatever]
> for thrd in workers: thrd.start()

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)

-tkc






More information about the Python-list mailing list