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

Lines Matching refs:argument

16 Events are specified by tuples (time, priority, action, argument).
19 event means calling the action function, passing it the argument
20 sequence in "argument" (remember that in Python, multiple function
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
108 time, priority, action, argument = checked_event = q[0]
117 action(*argument)