Commit 9644f245 authored by Robert Collins's avatar Robert Collins

Issue #24774: Fix docstring in http.server.test.

Patch from Chiu-Hsiang Hsu.
parent c6dd5b1c
...@@ -1211,8 +1211,7 @@ def test(HandlerClass=BaseHTTPRequestHandler, ...@@ -1211,8 +1211,7 @@ def test(HandlerClass=BaseHTTPRequestHandler,
ServerClass=HTTPServer, protocol="HTTP/1.0", port=8000, bind=""): ServerClass=HTTPServer, protocol="HTTP/1.0", port=8000, bind=""):
"""Test the HTTP request handler class. """Test the HTTP request handler class.
This runs an HTTP server on port 8000 (or the first command line This runs an HTTP server on port 8000 (or the port argument).
argument).
""" """
server_address = (bind, port) server_address = (bind, port)
......
...@@ -610,6 +610,7 @@ Alan Hourihane ...@@ -610,6 +610,7 @@ Alan Hourihane
Ken Howard Ken Howard
Brad Howes Brad Howes
Mike Hoy Mike Hoy
Chiu-Hsiang Hsu
Chih-Hao Huang Chih-Hao Huang
Christian Hudon Christian Hudon
Lawrence Hudson Lawrence Hudson
......
...@@ -75,6 +75,8 @@ Core and Builtins ...@@ -75,6 +75,8 @@ Core and Builtins
Library Library
------- -------
- Issue #24774: Fix docstring in http.server.test. Patch from Chiu-Hsiang Hsu.
- Issue #21159: Improve message in configparser.InterpolationMissingOptionError. - Issue #21159: Improve message in configparser.InterpolationMissingOptionError.
Patch from Łukasz Langa. Patch from Łukasz Langa.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment