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

Method _notify_after_timeout

pydevd.py:413–421  ·  view source on GitHub ↗
(self, global_suspend_time)

Source from the content-addressed store, hash-verified

411 )
412
413 def _notify_after_timeout(self, global_suspend_time):
414 with self._lock:
415 if self._suspended_thread_id_to_thread:
416 if global_suspend_time > self._last_suspend_notification_time:
417 self._last_suspend_notification_time = global_suspend_time
418 # Notify about any thread which is currently suspended.
419 pydev_log.info("Sending suspend notification after timeout.")
420 thread_id, thread = next(iter(self._suspended_thread_id_to_thread.items()))
421 self.send_suspend_notification(thread_id, thread, CMD_THREAD_SUSPEND)
422
423 def on_thread_suspend(self, thread_id, thread, stop_reason):
424 with self._lock:

Callers

nothing calls this directly

Calls 3

infoMethod · 0.80
itemsMethod · 0.80

Tested by

no test coverage detected