True if the connection is still alive.
(self)
| 189 | return out |
| 190 | |
| 191 | def is_open(self): |
| 192 | """True if the connection is still alive.""" |
| 193 | return self._connected |
| 194 | |
| 195 | def write_stdin(self, data): |
| 196 | """The same as write_channel with channel=0.""" |
no outgoing calls