summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkus-sus <73822103+markus-sus@users.noreply.github.com>2022-08-01 02:42:13 (GMT)
committerGitHub <noreply@github.com>2022-08-01 02:42:13 (GMT)
commitd29e279de38e7bc3b7deda573ba23d65831d9351 (patch)
tree106be433552a4b633ed311c35bc4eabc96e438a6
parent0f17a754d925345d67beff18897d86780436c506 (diff)
downloadcpython-d29e279de38e7bc3b7deda573ba23d65831d9351.zip
cpython-d29e279de38e7bc3b7deda573ba23d65831d9351.tar.gz
cpython-d29e279de38e7bc3b7deda573ba23d65831d9351.tar.bz2
bpo-42037: Corrected request dependencies in CookieJar functions (GH-23112)
-rw-r--r--Doc/library/http.cookiejar.rst17
1 files changed, 8 insertions, 9 deletions
diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst
index 51a8c53..53b3087 100644
--- a/Doc/library/http.cookiejar.rst
+++ b/Doc/library/http.cookiejar.rst
@@ -160,11 +160,10 @@ contained :class:`Cookie` objects.
respectively), the :mailheader:`Cookie2` header is also added when appropriate.
The *request* object (usually a :class:`urllib.request.Request` instance)
- must support the methods :meth:`get_full_url`, :meth:`get_host`,
- :meth:`get_type`, :meth:`unverifiable`, :meth:`has_header`,
+ must support the methods :meth:`get_full_url`, :meth:`has_header`,
:meth:`get_header`, :meth:`header_items`, :meth:`add_unredirected_header`
- and :attr:`origin_req_host` attribute as documented by
- :mod:`urllib.request`.
+ and the attributes :attr:`host`, :attr:`!type`, :attr:`unverifiable`
+ and :attr:`origin_req_host` as documented by :mod:`urllib.request`.
.. versionchanged:: 3.3
@@ -186,11 +185,11 @@ contained :class:`Cookie` objects.
method, which returns an :class:`email.message.Message` instance.
The *request* object (usually a :class:`urllib.request.Request` instance)
- must support the methods :meth:`get_full_url`, :meth:`get_host`,
- :meth:`unverifiable`, and :attr:`origin_req_host` attribute, as documented
- by :mod:`urllib.request`. The request is used to set default values for
- cookie-attributes as well as for checking that the cookie is allowed to be
- set.
+ must support the method :meth:`get_full_url` and the attributes
+ :attr:`host`, :attr:`unverifiable` and :attr:`origin_req_host`,
+ as documented by :mod:`urllib.request`. The request is used to set
+ default values for cookie-attributes as well as for checking that the
+ cookie is allowed to be set.
.. versionchanged:: 3.3