summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.7.rst
diff options
context:
space:
mode:
authorJulien Palard <julien@palard.fr>2018-05-29 22:44:12 (GMT)
committerGitHub <noreply@github.com>2018-05-29 22:44:12 (GMT)
commita34e424bdbc62b4d83593af1c0d459d8aaac90f3 (patch)
treee341f77e274ae743ea1a5a275a4d73a14d6c8962 /Doc/whatsnew/3.7.rst
parentf9aeca2085464838f04bf13f816a1f861d43541f (diff)
downloadcpython-a34e424bdbc62b4d83593af1c0d459d8aaac90f3.zip
cpython-a34e424bdbc62b4d83593af1c0d459d8aaac90f3.tar.gz
cpython-a34e424bdbc62b4d83593af1c0d459d8aaac90f3.tar.bz2
Fix whatsnew entry about ThreadedHTTPServer. (GH-7220)
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r--Doc/whatsnew/3.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 8b94cdc..2471989 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`.)