Same as readline_channel with channel=1.
(self, timeout=None)
| 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.""" |
| 163 | return self.readline_channel(STDOUT_CHANNEL, timeout=timeout) |
| 164 | |
| 165 | def peek_stderr(self, timeout=0): |
| 166 | """Same as peek_channel with channel=2.""" |