Same as read_channel with channel=1.
(self, timeout=None)
| 155 | return self.peek_channel(STDOUT_CHANNEL, timeout=timeout) |
| 156 | |
| 157 | def read_stdout(self, timeout=None): |
| 158 | """Same as read_channel with channel=1.""" |
| 159 | return self.read_channel(STDOUT_CHANNEL, timeout=timeout) |
| 160 | |
| 161 | def readline_stdout(self, timeout=None): |
| 162 | """Same as readline_channel with channel=1.""" |
no test coverage detected