how to interrupt time.sleep ?

2005-02-22 Thread BOOGIEMAN
I have line time.sleep(60) in my code How do I cancel waiting 60 seconds if I want to continue with program imediately ? Like Press some button if you don't want to wait If it can't be canceled what's the other solution to wait certain time/or press any button to continue problem ? --

Re: how to interrupt time.sleep ?

2005-02-22 Thread Peter Hansen
BOOGIEMAN wrote: I have line time.sleep(60) in my code How do I cancel waiting 60 seconds if I want to continue with program imediately? Like Press some button if you don't want to wait You cannot. If it can't be canceled what's the other solution to wait certain time/or press any button to

Re: how to interrupt time.sleep ?

2005-02-22 Thread Thomas Heller
BOOGIEMAN [EMAIL PROTECTED] writes: I have line time.sleep(60) in my code How do I cancel waiting 60 seconds if I want to continue with program imediately ? Like Press some button if you don't want to wait If it can't be canceled what's the other solution to wait certain time/or press