Lines Matching refs:Timer
32 'Timer', 'setprofile', 'settrace', 'local', 'stack_size']
1042 # The timer class was contributed by Itamar Shtull-Trauring
1044 def Timer(*args, **kwargs):
1045 """Factory function to create a Timer object.
1049 t = Timer(30.0, f, args=[], kwargs={})
1051 t.cancel() # stop the timer's action if it's still waiting
1059 t = Timer(30.0, f, args=[], kwargs={})
1061 t.cancel() # stop the timer's action if it's still waiting
1074 """Stop the timer if it hasn't finished yet"""