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'.
This commit is contained in:
Jason (Perry) Taylor 2019-11-17 05:14:45 +11:00 committed by Victor Stinner
parent a0652328a2
commit d0acdfcf34

View 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 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 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.) slows down method lookups.)
There are five classes in an inheritance diagram, four of which represent There are five classes in an inheritance diagram, four of which represent