Same as peek_channel with channel=2.
(self, timeout=0)
| 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.""" |
| 167 | return self.peek_channel(STDERR_CHANNEL, timeout=timeout) |
| 168 | |
| 169 | def read_stderr(self, timeout=None): |
| 170 | """Same as read_channel with channel=2.""" |