From: Robert Collins Date: Mon, 17 Aug 2015 00:18:35 +0000 (+1200) Subject: Issue #24774: Fix docstring in http.server.test. X-Git-Tag: v3.5.1rc1~427^2~87^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9644f2450dacd8c62ce7bd908d093cd5b0a7a8c7;p=thirdparty%2FPython%2Fcpython.git Issue #24774: Fix docstring in http.server.test. Patch from Chiu-Hsiang Hsu. --- diff --git a/Lib/http/server.py b/Lib/http/server.py index 47655e758aeb..ce0f6cfe77f0 100644 --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -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) diff --git a/Misc/ACKS b/Misc/ACKS index f5868f9647d9..6e80a33a72c2 100644 --- 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 diff --git a/Misc/NEWS b/Misc/NEWS index 9c4ea332cf86..0388197c2f65 100644 --- 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.