kill() Kills the process.
(self)
| 659 | raise AttributeError("'process' object has no attribute '%s'" % attr) |
| 660 | |
| 661 | def kill(self): |
| 662 | """kill() |
| 663 | |
| 664 | Kills the process. |
| 665 | """ |
| 666 | self.close() |
| 667 | |
| 668 | def poll(self, block = False): |
| 669 | """poll(block = False) -> int |