summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Hunt <chrahunt@gmail.com>2018-12-21 22:22:09 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-12-21 22:22:09 (GMT)
commit6ded8986e039bbd060cf8b768b50cef18ac73e63 (patch)
tree80fad8dd852f4b782c6a98e04127ddc9ee1c2c07
parentd3bbc5241363d5fa4e749fe509c97c12501ae966 (diff)
downloadcpython-6ded8986e039bbd060cf8b768b50cef18ac73e63.zip
cpython-6ded8986e039bbd060cf8b768b50cef18ac73e63.tar.gz
cpython-6ded8986e039bbd060cf8b768b50cef18ac73e63.tar.bz2
Fix typo in socketserver docstring (GH-11252)
Fix typo in the docstring of `service_actions`. serve_forver -> serve_forever
-rw-r--r--Lib/socketserver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socketserver.py b/Lib/socketserver.py
index f037791..905df93 100644
--- a/Lib/socketserver.py
+++ b/Lib/socketserver.py
@@ -594,7 +594,7 @@ if hasattr(os, "fork"):
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()