Captured standard output
(self)
| 84 | |
| 85 | @property |
| 86 | def stdout(self): |
| 87 | "Captured standard output" |
| 88 | if not self._stdout: |
| 89 | return '' |
| 90 | return self._stdout.getvalue() |
| 91 | |
| 92 | @property |
| 93 | def stderr(self): |
nothing calls this directly
no outgoing calls
no test coverage detected