[Python-checkins] Fix whatsnew entry about ThreadedHTTPServer. (GH-7220)

Julien Palard webhook-mailer at python.org
Tue May 29 18:44:16 EDT 2018


https://github.com/python/cpython/commit/a34e424bdbc62b4d83593af1c0d459d8aaac90f3
commit: a34e424bdbc62b4d83593af1c0d459d8aaac90f3
branch: master
author: Julien Palard <julien at palard.fr>
committer: GitHub <noreply at github.com>
date: 2018-05-30T00:44:12+02:00
summary:

Fix whatsnew entry about ThreadedHTTPServer. (GH-7220)

files:
M Doc/whatsnew/3.7.rst

diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 8b94cdcc9e6a..2471989ec7b9 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -929,7 +929,7 @@ With this parameter, the server serves the specified directory, by default it
 uses the current working directory.
 (Contributed by Stéphane Wirtel and Julien Palard in :issue:`28707`.)
 
-The new :class:`ThreadedHTTPServer <http.server.ThreadedHTTPServer>` class
+The new :class:`ThreadingHTTPServer <http.server.ThreadingHTTPServer>` class
 uses threads to handle requests using :class:`~socketserver.ThreadingMixin`.
 It is used when ``http.server`` is run with ``-m``.
 (Contributed by Julien Palard in :issue:`31639`.)



More information about the Python-checkins mailing list