[Python-checkins] Fix typo in socketserver docstring (GH-11252)

Miss Islington (bot) webhook-mailer at python.org
Fri Dec 21 18:01:48 EST 2018


https://github.com/python/cpython/commit/97d9d90821321ce1603fb0876bba5fd6f62016b4
commit: 97d9d90821321ce1603fb0876bba5fd6f62016b4
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-12-21T15:01:34-08:00
summary:

Fix typo in socketserver docstring (GH-11252)


Fix typo in the docstring of `service_actions`.
serve_forver -> serve_forever
(cherry picked from commit 6ded8986e039bbd060cf8b768b50cef18ac73e63)

Co-authored-by: Christopher Hunt <chrahunt at gmail.com>

files:
M Lib/socketserver.py

diff --git a/Lib/socketserver.py b/Lib/socketserver.py
index f0377918e894..905df9319e2f 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()
 



More information about the Python-checkins mailing list