Same as read_channel with channel=2.
(self, timeout=None)
| 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.""" |
| 171 | return self.read_channel(STDERR_CHANNEL, timeout=timeout) |
| 172 | |
| 173 | def readline_stderr(self, timeout=None): |
| 174 | """Same as readline_channel with channel=2.""" |
no test coverage detected