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

Method send_caught_exception_stack_proceeded

pydevd.py:2020–2025  ·  view source on GitHub ↗

Sends that some thread was resumed and is no longer showing an exception trace.

(self, thread)

Source from the content-addressed store, hash-verified

2018 self.post_internal_command(int_cmd, thread_id)
2019
2020 def send_caught_exception_stack_proceeded(self, thread):
2021 """Sends that some thread was resumed and is no longer showing an exception trace."""
2022 thread_id = get_thread_id(thread)
2023 int_cmd = InternalSendCurrExceptionTraceProceeded(thread_id)
2024 self.post_internal_command(int_cmd, thread_id)
2025 self.process_internal_commands()
2026
2027 def send_process_created_message(self):
2028 """Sends a message that a new process has been created."""

Callers 2

handle_exceptionFunction · 0.80

Tested by

no test coverage detected