This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients
Date 2001-08-10.08:21:43
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=21627

A quick poll among colleagues shows that shoot-once timers
are far more common than repeated intervall timers. You also
can quite easily implement the intervall timer on top of a
shoot-once timer, by restarting it in the timeout handler
(although care is needed if you need exact intervalls:
between last scheduled time-out and the handler invocation,
time may pass, so the restart may need to be smaller than
the intervall).

In short, I think the API as you provide it is excellent; if
people find it useful and require more, they will provide
patches.
History
Date User Action Args
2007-08-23 15:05:51adminlinkissue428326 messages
2007-08-23 15:05:51admincreate