MCPcopy Index your code
hub / github.com/python/cpython / service_actions

Method service_actions

Lib/socketserver.py:605–610  ·  view source on GitHub ↗

Collect the zombie child processes regularly in the ForkingMixIn. service_actions is called in the BaseServer's serve_forever loop.

(self)

Source from the content-addressed store, hash-verified

603 self.collect_children()
604
605 def service_actions(self):
606 """Collect the zombie child processes regularly in the ForkingMixIn.
607
608 service_actions is called in the BaseServer's serve_forever loop.
609 """
610 self.collect_children()
611
612 def process_request(self, request, client_address):
613 """Fork a new subprocess to process the request."""

Callers

nothing calls this directly

Calls 1

collect_childrenMethod · 0.95

Tested by

no test coverage detected