MCPcopy Index your code
hub / github.com/fabioz/PyDev.Debugger / send_process_created_message

Method send_process_created_message

pydevd.py:2027–2032  ·  view source on GitHub ↗

Sends a message that a new process has been created.

(self)

Source from the content-addressed store, hash-verified

2025 self.process_internal_commands()
2026
2027 def send_process_created_message(self):
2028 """Sends a message that a new process has been created."""
2029 if self.writer is None or self.cmd_factory is None:
2030 return
2031 cmd = self.cmd_factory.make_process_created_message()
2032 self.writer.add_command(cmd)
2033
2034 def send_process_about_to_be_replaced(self):
2035 """Sends a message that a new process has been created."""

Callers 1

Calls 2

add_commandMethod · 0.45

Tested by

no test coverage detected