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 a89d8a94a0)

Co-authored-by: Senthil Kumaran <senthil@uthcode.com>
This commit is contained in:
Miss Islington (bot) 2021-04-25 10:30:15 -07:00 committed by GitHub
parent 2178afffc0
commit 2825f906c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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