From d0acdfcf345b44b01e59f3623dcdab6279de686a Mon Sep 17 00:00:00 2001 From: "Jason (Perry) Taylor" Date: Sun, 17 Nov 2019 05:14:45 +1100 Subject: 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'. --- Lib/socketserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/socketserver.py') diff --git a/Lib/socketserver.py b/Lib/socketserver.py index 905df9319e2..1ad028fa4d0 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 -- cgit v1.2.3