[Python-checkins] Fix typo in Lib/socketserver.py (GH-17024)

Miss Islington (bot) webhook-mailer at python.org
Sat Nov 16 13:35:13 EST 2019


https://github.com/python/cpython/commit/e7c495e32cb22a5334a75d5b0e848a8cd752717e
commit: e7c495e32cb22a5334a75d5b0e848a8cd752717e
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-11-16T10:35:08-08:00
summary:

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 <jtaylor at seek.com.au>

files:
M Lib/socketserver.py

diff --git a/Lib/socketserver.py b/Lib/socketserver.py
index 905df9319e2fa..1ad028fa4d08c 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



More information about the Python-checkins mailing list