Kill process without giving it warning.
(self)
| 279 | return self.proc.returncode |
| 280 | |
| 281 | def kill(self): |
| 282 | """Kill process without giving it warning.""" |
| 283 | self.proc.kill() |
| 284 | self.proc.wait() |
| 285 | |
| 286 | def cleanup_files(self): |
| 287 | """Ensure files are closed.""" |