diff options
author | Julien Palard <julien@palard.fr> | 2018-05-29 22:44:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 22:44:12 (GMT) |
commit | a34e424bdbc62b4d83593af1c0d459d8aaac90f3 (patch) | |
tree | e341f77e274ae743ea1a5a275a4d73a14d6c8962 /Doc/whatsnew/3.7.rst | |
parent | f9aeca2085464838f04bf13f816a1f861d43541f (diff) | |
download | cpython-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.rst | 2 |
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`.) |