Same as peek_channel with channel=1.
(self, timeout=0)
| 151 | self._closed_channels.add(channel) |
| 152 | |
| 153 | def peek_stdout(self, timeout=0): |
| 154 | """Same as peek_channel with channel=1.""" |
| 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.""" |