]> granicus.if.org Git - python/commitdiff
Fix references to Python 3’s socketserver (lowercase) module
authorMartin Panter <vadmium+py@gmail.com>
Thu, 22 Sep 2016 09:37:56 +0000 (09:37 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Thu, 22 Sep 2016 09:37:56 +0000 (09:37 +0000)
Lib/test/ssl_servers.py
Lib/test/test_ssl.py
Misc/NEWS

index f9d30cf0bd738b6e659dc6cf3897e49c9359115d..b99ea45972013ef7ccd9a9b3adf0c09ec2ed145b 100644 (file)
@@ -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):
 
index 0f4faa09bdeb676502dd03f10c5446b6a0cf9c02..f162c6eee62cb738a21525136fe2cc75340c30c1 100644 (file)
@@ -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:
index 4d2fc0a39b7eba5ed05a550acc19e0842528d07a..9c00ee55203bf795b01917800ad694b20893a3c4 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -3494,7 +3494,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.