Provides a simple function for scheduling some code to run at some time in the future (assumes application is wxPython based).
A wx.Timer subclass that invokes a specified callback periodically.
Bases: wx._misc.Timer
Simple subclass of wx.Timer that allows the user to have a function called periodically.
Any exceptions raised in the callable are caught. If StopIteration is raised the timer stops. If other exceptions are encountered the timer is stopped and the exception re-raised.
Overridden to call the given callable. Exceptions raised in the callable are caught. If StopIteration is raised the timer stops. If other exceptions are encountered the timer is stopped and the exception re-raised.