MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / notify_thread_suspended

Method notify_thread_suspended

pydevd.py:466–471  ·  view source on GitHub ↗
(self, thread_id, thread, stop_reason)

Source from the content-addressed store, hash-verified

464
465 @contextmanager
466 def notify_thread_suspended(self, thread_id, thread, stop_reason):
467 self.on_thread_suspend(thread_id, thread, stop_reason)
468 try:
469 yield # At this point the thread must be actually suspended.
470 finally:
471 self.on_thread_resume(thread_id, thread)
472
473
474class ThreadsSuspendedSingleNotification(AbstractSingleNotificationBehavior):

Callers 3

do_wait_suspendMethod · 0.45
do_wait_suspendMethod · 0.45

Calls 2

on_thread_suspendMethod · 0.95
on_thread_resumeMethod · 0.95

Tested by 1

do_wait_suspendMethod · 0.36