In message <[EMAIL PROTECTED]>, Hendrik
van Rooyen wrote:

>     import time
>     while True:
>         end_time = time.time() + 5
>         while time.time() < end_time:
>             do_the_in_between_stuff()
>         do_the_every_five_second_stuff()

Maybe I'm dense, but ... where do you stop the busy-waiting?
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to