aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/socketserver.py
diff options
context:
space:
mode:
authorJason (Perry) Taylor <jtaylor@seek.com.au>2019-11-17 05:14:45 +1100
committerVictor Stinner <vstinner@python.org>2019-11-16 19:14:45 +0100
commitd0acdfcf345b44b01e59f3623dcdab6279de686a (patch)
tree58e05c82ac3f69f870585cdf9046800b27fb0477 /Lib/socketserver.py
parenta0652328a26757a90d63697b5c01f5427b1132b5 (diff)
downloadcpython-d0acdfcf345b44b01e59f3623dcdab6279de686a.tar.gz
cpython-d0acdfcf345b44b01e59f3623dcdab6279de686a.zip
Fix typo in Lib/socketserver.py (GH-17024)
changed 'This is bad class design, but save some typing' into 'This is bad class design, but saves some typing'.
Diffstat (limited to 'Lib/socketserver.py')
-rw-r--r--Lib/socketserver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socketserver.py b/Lib/socketserver.py
index 905df9319e2..1ad028fa4d0 100644
--- a/Lib/socketserver.py
+++ b/Lib/socketserver.py
@@ -24,7 +24,7 @@ For request-based servers (including socket-based):
The classes in this module favor the server type that is simplest to
write: a synchronous TCP/IP server. This is bad class design, but
-save some typing. (There's also the issue that a deep class hierarchy
+saves some typing. (There's also the issue that a deep class hierarchy
slows down method lookups.)
There are five classes in an inheritance diagram, four of which represent