summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-22 10:33:51 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-09-22 10:33:51 (GMT)
commit3217b1243e03f93ceefa273f6d9941332750cc60 (patch)
tree23706197ab67f4f82706aed7025845929c46a1cc /Lib
parentf3b0639417bf788d9a7133ec26e52c406e6c8f4c (diff)
parent463ef2b3cf4ac4555fca7de1e671d179e63909b4 (diff)
downloadcpython-3217b1243e03f93ceefa273f6d9941332750cc60.zip
cpython-3217b1243e03f93ceefa273f6d9941332750cc60.tar.gz
cpython-3217b1243e03f93ceefa273f6d9941332750cc60.tar.bz2
Merge socketserver fixes from 3.5 into 3.6
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/ssl_servers.py2
-rw-r--r--Lib/test/test_ssl.py2
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 46ec822..1905df0 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -2734,7 +2734,7 @@ if _have_threads:
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: