diff options
author | Jason (Perry) Taylor <jtaylor@seek.com.au> | 2019-11-16 18:14:45 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@python.org> | 2019-11-16 18:14:45 (GMT) |
commit | d0acdfcf345b44b01e59f3623dcdab6279de686a (patch) | |
tree | 58e05c82ac3f69f870585cdf9046800b27fb0477 | |
parent | a0652328a26757a90d63697b5c01f5427b1132b5 (diff) | |
download | cpython-d0acdfcf345b44b01e59f3623dcdab6279de686a.zip cpython-d0acdfcf345b44b01e59f3623dcdab6279de686a.tar.gz cpython-d0acdfcf345b44b01e59f3623dcdab6279de686a.tar.bz2 |
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'.
-rw-r--r-- | Lib/socketserver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socketserver.py b/Lib/socketserver.py index 905df93..1ad028f 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 |