(self)
| 135 | return "".join(parts), None |
| 136 | |
| 137 | def close(self): |
| 138 | if not self.proc: |
| 139 | return |
| 140 | try: |
| 141 | self.proc.stdin.close() |
| 142 | except Exception: |
| 143 | pass |
| 144 | try: |
| 145 | self.proc.wait(timeout=10) |
| 146 | except Exception: |
| 147 | try: |
| 148 | self.proc.kill() |
| 149 | except Exception: |
| 150 | pass |