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

Function write_err

_pydevd_bundle/pydevd_reload.py:114–125  ·  view source on GitHub ↗
(*args)

Source from the content-addressed store, hash-verified

112
113
114def write_err(*args):
115 py_db = get_global_debugger()
116 if py_db is not None:
117 new_lst = []
118 for a in args:
119 new_lst.append(str(a))
120
121 msg = " ".join(new_lst)
122 s = "code reload: %s\n" % (msg,)
123 cmd = py_db.cmd_factory.make_io_message(s, 2)
124 if py_db.writer is not None:
125 py_db.writer.add_command(cmd)
126
127
128def notify_info0(*args):

Callers 4

notify_info0Function · 0.85
notify_infoFunction · 0.85
notify_info2Function · 0.85
notify_errorFunction · 0.85

Calls 5

get_global_debuggerFunction · 0.90
appendMethod · 0.45
joinMethod · 0.45
make_io_messageMethod · 0.45
add_commandMethod · 0.45

Tested by

no test coverage detected