From cb50b5479d207eae71e302ff37e5960281c039c8 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Mon, 28 Nov 2005 03:57:37 +0000 Subject: timer: passed timers will always be set to StateEnded, and set back to waiting when reprocessing (due timewarp). waiting timers will be removed from one list only. remove try/except. --- timer.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'timer.py') diff --git a/timer.py b/timer.py index bbad0be1..f5aee840 100644 --- a/timer.py +++ b/timer.py @@ -103,6 +103,7 @@ class Timer: # right into the processedTimers. if entry.end <= time.time() and entry.state == TimerEntry.StateWait: bisect.insort(self.processed_timers, entry) + entry.state = TimerEntry.StateEnded else: bisect.insort(self.timer_list, entry) if not noRecalc: @@ -121,6 +122,8 @@ class Timer: tl = self.processed_timers self.processed_timers = [ ] for x in tl: + # simulate a "waiting" state to give them a chance to re-occure + x.state = TimerEntry.StateWaiting self.addTimerEntry(x, noRecalc=1) self.processActivation() -- cgit v1.2.3