Start two threads in same time

2009-01-16 Thread vedrandekovic
Hello, Does anybody know how can I start two threads in same time? Regards, John -- http://mail.python.org/mailman/listinfo/python-list

Re: Start two threads in same time

2009-01-16 Thread koranthala
On Jan 16, 7:46 pm, koranthala wrote: > On Jan 16, 7:36 pm, vedrandeko...@gmail.com wrote: > > > Hello, > > > Does anybody know how can I start two threads in same time? > > > Regards, > > John > > Use threading mod

Re: Start two threads in same time

2009-01-16 Thread koranthala
On Jan 16, 7:36 pm, vedrandeko...@gmail.com wrote: > Hello, > > Does anybody know how can I start two threads in same time? > > Regards, > John Use threading module. Creating a new thread is as easy as -- --