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