Start up the command runner process.
(self, env=None)
| 227 | self.memory_samples.append(mem) |
| 228 | |
| 229 | def start(self, env=None): |
| 230 | """Start up the command runner process.""" |
| 231 | self._popen = Popen( |
| 232 | [sys.executable, self.CLIENT_SERVER], |
| 233 | stdout=PIPE, |
| 234 | stdin=PIPE, |
| 235 | env=env, |
| 236 | ) |
| 237 | |
| 238 | def stop(self): |
| 239 | """Shutdown the command runner process.""" |
no outgoing calls