The same as write_channel with channel=0.
(self, data)
| 193 | return self._connected |
| 194 | |
| 195 | def write_stdin(self, data): |
| 196 | """The same as write_channel with channel=0.""" |
| 197 | self.write_channel(STDIN_CHANNEL, data) |
| 198 | |
| 199 | def update(self, timeout=0): |
| 200 | """Update channel buffers with at most one complete frame of input.""" |