From f42c2ad876cb59afea1d55fe4d1581281d238bd9 Mon Sep 17 00:00:00 2001 From: Jason Taylor Date: Fri, 1 Nov 2019 11:04:47 +1100 Subject: [PATCH] fix typo in Lib/socketserver.py 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(-) diff --git a/Lib/socketserver.py b/Lib/socketserver.py index 905df9319e2fa8..1ad028fa4d08ca 100644 --- a/Lib/socketserver.py +++ b/Lib/socketserver.py @@ -24,7 +24,7 @@ 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