]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in Lib/socketserver.py (GH-17024)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 16 Nov 2019 18:32:37 +0000 (10:32 -0800)
committerGitHub <noreply@github.com>
Sat, 16 Nov 2019 18:32:37 +0000 (10:32 -0800)
changed 'This is bad class design, but save some typing'
into 'This is bad class design, but saves some typing'.
(cherry picked from commit d0acdfcf345b44b01e59f3623dcdab6279de686a)

Co-authored-by: Jason (Perry) Taylor <jtaylor@seek.com.au>
Lib/socketserver.py

index 905df9319e2fa8d2baeb548df14318f58a0ba2a5..1ad028fa4d08ca338e0b66bc5e6c116957bacec5 100644 (file)
@@ -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