From 6ded8986e039bbd060cf8b768b50cef18ac73e63 Mon Sep 17 00:00:00 2001 From: Christopher Hunt Date: Fri, 21 Dec 2018 17:22:09 -0500 Subject: [PATCH] Fix typo in socketserver docstring (GH-11252) Fix typo in the docstring of `service_actions`. serve_forver -> serve_forever --- Lib/socketserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/socketserver.py b/Lib/socketserver.py index f0377918e89..905df9319e2 100644 --- a/Lib/socketserver.py +++ b/Lib/socketserver.py @@ -594,7 +594,7 @@ def handle_timeout(self): def service_actions(self): """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()