From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 16 Nov 2019 18:35:08 +0000 (-0800) Subject: Fix typo in Lib/socketserver.py (GH-17024) X-Git-Tag: v3.8.1rc1~78 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e7c495e32cb22a5334a75d5b0e848a8cd752717e;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'. (cherry picked from commit d0acdfcf345b44b01e59f3623dcdab6279de686a) Co-authored-by: Jason (Perry) Taylor --- 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