(self)
| 41 | self.close() |
| 42 | |
| 43 | def start(self): |
| 44 | self.proc = subprocess.Popen( |
| 45 | [self.binary], |
| 46 | stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, |
| 47 | env=self.env, cwd=self.cwd, bufsize=0) |
| 48 | threading.Thread(target=self._drain_stderr, daemon=True).start() |
| 49 | |
| 50 | def _drain_stderr(self): |
| 51 | try: |
no outgoing calls
no test coverage detected