Kill process without giving it warning.
(self)
| 254 | return self.proc.returncode |
| 255 | |
| 256 | def kill(self): |
| 257 | """Kill process without giving it warning.""" |
| 258 | self.proc.kill() |
| 259 | self.proc.wait() |
| 260 | |
| 261 | def logs_catchup(self): |
| 262 | """Save the latest stdout / stderr contents; return true if we got anything. |