src/eric7/DebugClients/Python/DebugBase.py

branch
eric7
changeset 10289
490388ca210c
parent 10287
0322776373ed
child 10290
a362e5d5bf66
equal deleted inserted replaced
10288:1f5c7f54c3cc 10289:490388ca210c
329 return self.trace_dispatch 329 return self.trace_dispatch
330 330
331 if event == "call": 331 if event == "call":
332 if ( 332 if (
333 self.stop_here(frame) 333 self.stop_here(frame)
334 or not self.callTraceOptimization
334 or self.__checkBreakInFrame(frame) 335 or self.__checkBreakInFrame(frame)
335 or Watch.watches != [] 336 or Watch.watches != []
336 ) or ( 337 ) or (
337 self.stopframe and frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS 338 self.stopframe and frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS
338 ): 339 ):

eric ide

mercurial