Home | History | Annotate | Download | only in Lib

Lines Matching defs:Timer

28            'Barrier', 'BrokenBarrierError', 'Timer', 'ThreadError',
1156 # The timer class was contributed by Itamar Shtull-Trauring
1158 class Timer(Thread):
1161 t = Timer(30.0, f, args=None, kwargs=None)
1163 t.cancel() # stop the timer's action if it's still waiting
1176 """Stop the timer if it hasn't finished yet."""