From: Julien Palard Date: Tue, 29 May 2018 22:44:12 +0000 (+0200) Subject: Fix whatsnew entry about ThreadedHTTPServer. (GH-7220) X-Git-Tag: v3.8.0a1~1723 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a34e424bdbc62b4d83593af1c0d459d8aaac90f3;p=thirdparty%2FPython%2Fcpython.git Fix whatsnew entry about ThreadedHTTPServer. (GH-7220) --- 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 ` class +The new :class:`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`.)