diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-09-22 09:37:56 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-09-22 09:37:56 (GMT) |
commit | 463ef2b3cf4ac4555fca7de1e671d179e63909b4 (patch) | |
tree | f72315f6460176480bb6d46950e50f22dd5b5c5c /Lib | |
parent | bb8b1cb6af830b40f9be398d1e1bf8bdca772140 (diff) | |
download | cpython-463ef2b3cf4ac4555fca7de1e671d179e63909b4.zip cpython-463ef2b3cf4ac4555fca7de1e671d179e63909b4.tar.gz cpython-463ef2b3cf4ac4555fca7de1e671d179e63909b4.tar.bz2 |
Fix references to Python 3’s socketserver (lowercase) module
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/ssl_servers.py | 2 | ||||
-rw-r--r-- | Lib/test/test_ssl.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/ssl_servers.py b/Lib/test/ssl_servers.py index f9d30cf..b99ea45 100644 --- a/Lib/test/ssl_servers.py +++ b/Lib/test/ssl_servers.py @@ -16,7 +16,7 @@ here = os.path.dirname(__file__) HOST = support.HOST CERTFILE = os.path.join(here, 'keycert.pem') -# This one's based on HTTPServer, which is based on SocketServer +# This one's based on HTTPServer, which is based on socketserver class HTTPSServer(_HTTPServer): diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 0f4faa0..f162c6e 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -2661,7 +2661,7 @@ else: s.close() def test_socketserver(self): - """Using a SocketServer to create and manage SSL connections.""" + """Using socketserver to create and manage SSL connections.""" server = make_https_server(self, certfile=CERTFILE) # try to connect if support.verbose: |