summaryrefslogtreecommitdiffstats
path: root/Doc/library/http.server.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2021-04-25 17:08:29 (GMT)
committerGitHub <noreply@github.com>2021-04-25 17:08:29 (GMT)
commita89d8a94a0dd0bd45349efad6d5ad68641f4ff9a (patch)
treee89ef84807ae815b4e390e4c2e55a3654d801997 /Doc/library/http.server.rst
parentc9c27b8004f7a5dd214bb2608c3f5e2bbfec33ac (diff)
downloadcpython-a89d8a94a0dd0bd45349efad6d5ad68641f4ff9a.zip
cpython-a89d8a94a0dd0bd45349efad6d5ad68641f4ff9a.tar.gz
cpython-a89d8a94a0dd0bd45349efad6d5ad68641f4ff9a.tar.bz2
BaseHTTPRequestHandler, that path includes query (#25597)
* Clarify, for BaseHTTPRequestHandler, that path includes query Co-authored-by: David Jones <drj@pobox.com>
Diffstat (limited to 'Doc/library/http.server.rst')
-rw-r--r--Doc/library/http.server.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst
index 478a5b3..729d7e3 100644
--- a/Doc/library/http.server.rst
+++ b/Doc/library/http.server.rst
@@ -98,7 +98,9 @@ provides three different variants:
.. attribute:: path
- Contains the request path.
+ Contains the request path. If query component of the URL is present,
+ then ``path`` includes the query. Using the terminology of :rfc:`3986`,
+ ``path`` here includes ``hier-part`` and the ``query``.
.. attribute:: request_version