Returns stderr captured from the debugged process, as a single string. If encoding is None, returns bytes. Otherwise, returns str.
(self, encoding=None)
| 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. |
no test coverage detected