DebugClients/Python/DebugBase.py

changeset 5263
50a03ff54b15
parent 5239
27f56dc07b5b
child 5273
be55746da9d1
equal deleted inserted replaced
5262:235d6a030128 5263:50a03ff54b15
302 raise SystemExit 302 raise SystemExit
303 303
304 if event == 'line': 304 if event == 'line':
305 if self.stop_here(frame) or self.break_here(frame): 305 if self.stop_here(frame) or self.break_here(frame):
306 self.user_line(frame) 306 self.user_line(frame)
307 return 307 return self.trace_dispatch
308 308
309 if event == 'call': 309 if event == 'call':
310 if self.botframe is None and frame.f_lineno > 1: 310 if self.botframe is None and frame.f_lineno > 1:
311 self.botframe = frame 311 self.botframe = frame
312 frame.f_trace = self.trace_dispatch 312 frame.f_trace = self.trace_dispatch

eric ide

mercurial