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

Method add_console_message

_pydevd_bundle/pydevd_console.py:32–36  ·  view source on GitHub ↗

add messages in the console_messages list

(self, message_type, message)

Source from the content-addressed store, hash-verified

30 self.console_messages = []
31
32 def add_console_message(self, message_type, message):
33 """add messages in the console_messages list"""
34 for m in message.split("\n"):
35 if m.strip():
36 self.console_messages.append((message_type, m))
37
38 def update_more(self, more):
39 """more is set to true if further input is required from the user

Callers 3

do_itMethod · 0.95
execute_console_commandFunction · 0.95
get_interactive_consoleFunction · 0.80

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected