BaseHTTPRequestHandler, that path includes query (#25597)

* Clarify, for BaseHTTPRequestHandler, that path includes query

Co-authored-by: David Jones <drj@pobox.com>
This commit is contained in:
Senthil Kumaran 2021-04-25 10:08:29 -07:00 committed by GitHub
parent c9c27b8004
commit a89d8a94a0
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