diff options
author | Robert Collins <rbtcollins@hp.com> | 2015-08-17 00:19:19 (GMT) |
---|---|---|
committer | Robert Collins <rbtcollins@hp.com> | 2015-08-17 00:19:19 (GMT) |
commit | 5409177b6235fab3fd1c50955b2b8f032cc8e8af (patch) | |
tree | bd8cf099c05c7ad39dd825bfc865e5f408fdcedd | |
parent | e6894d6256d000abd2c5ab7bb35b330d7a51d443 (diff) | |
parent | 9644f2450dacd8c62ce7bd908d093cd5b0a7a8c7 (diff) | |
download | cpython-5409177b6235fab3fd1c50955b2b8f032cc8e8af.zip cpython-5409177b6235fab3fd1c50955b2b8f032cc8e8af.tar.gz cpython-5409177b6235fab3fd1c50955b2b8f032cc8e8af.tar.bz2 |
Issue #24774: Fix docstring in http.server.test.
Patch from Chiu-Hsiang Hsu.
-rw-r--r-- | Lib/http/server.py | 3 | ||||
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/Lib/http/server.py b/Lib/http/server.py index fd13be3..6a0e6fe 100644 --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -1167,8 +1167,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) @@ -622,6 +622,7 @@ Ken Howard Brad Howes Mike Hoy Ben Hoyt +Chiu-Hsiang Hsu Chih-Hao Huang Christian Hudon Lawrence Hudson @@ -16,6 +16,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. |