summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2018-10-20 16:46:28 (GMT)
committerNed Deily <nad@python.org>2018-10-20 16:46:28 (GMT)
commitdcd2b1ed2f7fda0fb465f5ffa511e539502beed6 (patch)
tree5fe83d00807951c895a4fbe2a98e546eae685026 /Doc/library
parent76e8582fca17b89d2709ad7f4e1ad658ee839962 (diff)
parent6ec5cf24b7f38ea72bb42d5cd60dca0d3ee332f9 (diff)
downloadcpython-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.rst8
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::