]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in Lib/socketserver.py (GH-17024)
authorJason (Perry) Taylor <jtaylor@seek.com.au>
Sat, 16 Nov 2019 18:14:45 +0000 (05:14 +1100)
committerVictor Stinner <vstinner@python.org>
Sat, 16 Nov 2019 18:14:45 +0000 (19:14 +0100)
changed 'This is bad class design, but save some typing'
into 'This is bad class design, but saves some typing'.

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