]> granicus.if.org Git - python/commitdiff
Issue #24774: Fix docstring in http.server.test.
authorRobert Collins <rbtcollins@hp.com>
Mon, 17 Aug 2015 00:18:35 +0000 (12:18 +1200)
committerRobert Collins <rbtcollins@hp.com>
Mon, 17 Aug 2015 00:18:35 +0000 (12:18 +1200)
Patch from Chiu-Hsiang Hsu.

Lib/http/server.py
Misc/ACKS
Misc/NEWS

index 47655e758aeb5b724177cde125feeb0a2ae66a6b..ce0f6cfe77f0a2a8b9310308fdd9813ec14ce1f6 100644 (file)
@@ -1211,8 +1211,7 @@ def test(HandlerClass=BaseHTTPRequestHandler,
          ServerClass=HTTPServer, protocol="HTTP/1.0", port=8000, bind=""):
     """Test the HTTP request handler class.
 
-    This runs an HTTP server on port 8000 (or the first command line
-    argument).
+    This runs an HTTP server on port 8000 (or the port argument).
 
     """
     server_address = (bind, port)
index f5868f9647d97554bcdf275ed8a1ab4719b554e0..6e80a33a72c2b992ba982a9951e30502173b57d9 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -610,6 +610,7 @@ Alan Hourihane
 Ken Howard
 Brad Howes
 Mike Hoy
+Chiu-Hsiang Hsu
 Chih-Hao Huang
 Christian Hudon
 Lawrence Hudson
index 9c4ea332cf8605ded94ae6bf52b2b2805a8d1cf6..0388197c2f65f726d29aa6cb56a60883ce770671 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -75,6 +75,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #24774: Fix docstring in http.server.test. Patch from Chiu-Hsiang Hsu.
+
 - Issue #21159: Improve message in configparser.InterpolationMissingOptionError.
   Patch from Ćukasz Langa.