Home | History | Annotate | Download | only in python2.7

Lines Matching refs:action

16 Events are specified by tuples (time, priority, action, argument).
19 event means calling the action function, passing it the argument
22 The action function may be an instance method so it
36 Event = namedtuple('Event', 'time, priority, action, argument')
46 def enterabs(self, time, priority, action, argument):
53 event = Event(time, priority, action, argument)
57 def enter(self, delay, priority, action, argument):
64 return self.enterabs(time, priority, action, argument)
86 (its action function is called, passing it the argument). If
90 It is legal for both the delay function and the action
108 time, priority, action, argument = checked_event = q[0]
117 action(*argument)
127 time, priority, action, arguments