diff options
author | Ned Deily <nad@python.org> | 2018-10-20 16:46:28 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2018-10-20 16:46:28 (GMT) |
commit | dcd2b1ed2f7fda0fb465f5ffa511e539502beed6 (patch) | |
tree | 5fe83d00807951c895a4fbe2a98e546eae685026 /Doc/library | |
parent | 76e8582fca17b89d2709ad7f4e1ad658ee839962 (diff) | |
parent | 6ec5cf24b7f38ea72bb42d5cd60dca0d3ee332f9 (diff) | |
download | cpython-dcd2b1ed2f7fda0fb465f5ffa511e539502beed6.zip cpython-dcd2b1ed2f7fda0fb465f5ffa511e539502beed6.tar.gz cpython-dcd2b1ed2f7fda0fb465f5ffa511e539502beed6.tar.bz2 |
Merge tag 'v3.6.7' into 3.6
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/http.server.rst | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst index ab5d568..b29020b 100644 --- a/Doc/library/http.server.rst +++ b/Doc/library/http.server.rst @@ -16,14 +16,6 @@ This module defines classes for implementing HTTP servers (Web servers). -Security Considerations ------------------------ - -http.server is meant for demo purposes and does not implement the stringent -security checks needed of real HTTP server. We do not recommend -using this module directly in production. - - One class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer` subclass. It creates and listens at the HTTP socket, dispatching the requests to a handler. Code to create and run the server looks like this:: |