(self)
| 88 | return self.proc.stdout |
| 89 | |
| 90 | def close(self): |
| 91 | if not self.proc or self.proc.stdin.closed: |
| 92 | return |
| 93 | self.proc.stdin.write(b'\n\n') |
| 94 | self.proc.stdin.flush() |
| 95 | self.proc.terminate() |
| 96 | |
| 97 | |
| 98 | class SSHConnection(urllib3.connection.HTTPConnection): |
no outgoing calls
no test coverage detected