diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-04-25 17:17:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-25 17:17:05 (GMT) |
commit | d6322c9c459e2a06a08d41f95f6686ca4fa406c9 (patch) | |
tree | 81f0c13d73dbfbec9a497bfcb9b5a3c467948bbd | |
parent | 6077efa2b2be17e736d061fe74f933dc616c64b2 (diff) | |
download | cpython-d6322c9c459e2a06a08d41f95f6686ca4fa406c9.zip cpython-d6322c9c459e2a06a08d41f95f6686ca4fa406c9.tar.gz cpython-d6322c9c459e2a06a08d41f95f6686ca4fa406c9.tar.bz2 |
BaseHTTPRequestHandler, that path includes query (GH-25597)
* Clarify, for BaseHTTPRequestHandler, that path includes query
Co-authored-by: David Jones <drj@pobox.com>
(cherry picked from commit a89d8a94a0dd0bd45349efad6d5ad68641f4ff9a)
Co-authored-by: Senthil Kumaran <senthil@uthcode.com>
-rw-r--r-- | Doc/library/http.server.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst index a367e37..d54bd05 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 |