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 not self._dbgClient.callTraceOptimization |
335 or self.__checkBreakInFrame(frame) |
335 or self.__checkBreakInFrame(frame) |
336 or Watch.watches != [] |
336 or Watch.watches != [] |
337 ) or ( |
337 ) or ( |
338 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 |
339 ): |
339 ): |