MCPcopy Create free account
hub / github.com/microsoft/debugpy / stderr

Method stderr

tests/debug/output.py:91–96  ·  view source on GitHub ↗

Returns stderr captured from the debugged process, as a single string. If encoding is None, returns bytes. Otherwise, returns str.

(self, encoding=None)

Source from the content-addressed store, hash-verified

89 return self._output("stdout", encoding, lines=False)
90
91 def stderr(self, encoding=None):
92 """Returns stderr captured from the debugged process, as a single string.
93
94 If encoding is None, returns bytes. Otherwise, returns str.
95 """
96 return self._output("stderr", encoding, lines=False)
97
98 def stdout_lines(self, encoding=None):
99 """Returns stdout captured from the debugged process, as a list of lines.

Callers 1

captured_stderrMethod · 0.80

Calls 1

_outputMethod · 0.95

Tested by

no test coverage detected