Wait for zombies after self.timeout seconds of inactivity. May be extended, do not override.
(self)
| 599 | pass |
| 600 | |
| 601 | def handle_timeout(self): |
| 602 | """Wait for zombies after self.timeout seconds of inactivity. |
| 603 | |
| 604 | May be extended, do not override. |
| 605 | """ |
| 606 | self.collect_children() |
| 607 | |
| 608 | def service_actions(self): |
| 609 | """Collect the zombie child processes regularly in the ForkingMixIn. |
nothing calls this directly
no test coverage detected