mirror of https://github.com/python/cpython.git
Fix typo in socketserver docstring (GH-11252)
Fix typo in the docstring of `service_actions`. serve_forver -> serve_forever
This commit is contained in:
parent
d3bbc52413
commit
6ded8986e0
|
@ -594,7 +594,7 @@ def handle_timeout(self):
|
||||||
def service_actions(self):
|
def service_actions(self):
|
||||||
"""Collect the zombie child processes regularly in the ForkingMixIn.
|
"""Collect the zombie child processes regularly in the ForkingMixIn.
|
||||||
|
|
||||||
service_actions is called in the BaseServer's serve_forver loop.
|
service_actions is called in the BaseServer's serve_forever loop.
|
||||||
"""
|
"""
|
||||||
self.collect_children()
|
self.collect_children()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue