Lines Matching refs:event
63 def trace_dispatch(self, frame, event, arg):
64 """Dispatch a trace function for debugged frames based on the event.
69 dispatch a frame, depending on the type of event (passed in as a
72 The event can be one of the following:
85 The arg parameter depends on the previous event.
89 if event == 'line':
91 if event == 'call':
93 if event == 'return':
95 if event == 'exception':
97 if event == 'c_call':
99 if event == 'c_exception':
101 if event == 'c_return':
103 print('bdb.Bdb.dispatch: unknown debugging event:', repr(event))
107 """Invoke user function and return trace function for line event.
119 """Invoke user function and return trace function for call event.
141 """Invoke user function and return trace function for return event.
163 """Invoke user function and return trace function for exception event.