From: Jason (Perry) Taylor Date: Sat, 16 Nov 2019 18:14:45 +0000 (+1100) Subject: Fix typo in Lib/socketserver.py (GH-17024) X-Git-Tag: v3.9.0a1~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d0acdfcf345b44b01e59f3623dcdab6279de686a;p=thirdparty%2FPython%2Fcpython.git 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'. --- diff --git a/Lib/socketserver.py b/Lib/socketserver.py index 905df9319e2f..1ad028fa4d08 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