summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-22 10:34:50 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-09-22 10:34:50 +0000
commit2e610df5720cdc0fc16795ae17b7d8c6f7502b82 (patch)
tree49b8e6a2382dd121829145181ae513d8a190f714
parent21efc0bbf80fc23a277429b6260c9e45f7ca573e (diff)
parent3217b1243e03f93ceefa273f6d9941332750cc60 (diff)
downloadcpython-git-2e610df5720cdc0fc16795ae17b7d8c6f7502b82.tar.gz
Merge socketserver fixes from 3.6
-rw-r--r--Lib/test/ssl_servers.py2
-rw-r--r--Lib/test/test_ssl.py2
-rw-r--r--Misc/NEWS2
3 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/ssl_servers.py b/Lib/test/ssl_servers.py
index f9d30cf0bd..b99ea45972 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 46ec8223e8..1905df0f43 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:
diff --git a/Misc/NEWS b/Misc/NEWS
index 884030985e..d584292134 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -4973,7 +4973,7 @@ Library
- Issue #18643: Add socket.socketpair() on Windows.
-- Issue #22435: Fix a file descriptor leak when SocketServer bind fails.
+- Issue #22435: Fix a file descriptor leak when socketserver bind fails.
- Issue #13096: Fixed segfault in CTypes POINTER handling of large
values.