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