On 25 Dec 2006 21:50:15 -0800, many_years_after wrote
> While , there is something wrong in my expression. What I mean is the
> thread will wait some time after doing some tasks. I want to know is
> there any method to end the thread or make it out of execution of
> waiting. I use time.sleep() to l
many_years_after wrote:
> Carsten Haese wrote:
> > On Sun, 2006-12-24 at 22:55 -0800, many_years_after wrote:
> > > Hi, pythoners:
> > >
> > > There is a problem I couldn't dispose. I start a thread in the my
> > > program. The thread will do something before executing time.sleep().
> > > Wh
Carsten Haese wrote:
> On Sun, 2006-12-24 at 22:55 -0800, many_years_after wrote:
> > Hi, pythoners:
> >
> > There is a problem I couldn't dispose. I start a thread in the my
> > program. The thread will do something before executing time.sleep().
> > When the user give a signal to the main
On Sun, 2006-12-24 at 22:55 -0800, many_years_after wrote:
> Hi, pythoners:
>
> There is a problem I couldn't dispose. I start a thread in the my
> program. The thread will do something before executing time.sleep().
> When the user give a signal to the main thread (such as click the 'end'
>
many_years_after wrote:
> Hi, pythoners:
>
> There is a problem I couldn't dispose. I start a thread in the my
> program. The thread will do something before executing time.sleep().
> When the user give a signal to the main thread (such as click the 'end'
> button or close the window), the t
Hi, pythoners:
There is a problem I couldn't dispose. I start a thread in the my
program. The thread will do something before executing time.sleep().
When the user give a signal to the main thread (such as click the 'end'
button or close the window), the thread should end it's running. But
h