diff options
author | Milan Oberkirch <milan.oberkirch@geops.de> | 2019-07-13 10:17:17 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-07-13 10:17:16 (GMT) |
commit | b5bbb8a740eaf46c78d122185de8b072e9deea2a (patch) | |
tree | 857ac6f00cfec92156cddac76b2ba9efe7890799 | |
parent | 994a3b88dca852696351358e2743313e546b5ecf (diff) | |
download | cpython-b5bbb8a740eaf46c78d122185de8b072e9deea2a.zip cpython-b5bbb8a740eaf46c78d122185de8b072e9deea2a.tar.gz cpython-b5bbb8a740eaf46c78d122185de8b072e9deea2a.tar.bz2 |
bpo-37580: Fix typo in http.cookiejar documentation (GH-14731)
[bpo-37580](https://bugs.python.org/issue37580): Markup typo in http.cookiejar doc
https://bugs.python.org/issue37580
-rw-r--r-- | Doc/library/http.cookiejar.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst index a9d7321..1788bd8 100644 --- a/Doc/library/http.cookiejar.rst +++ b/Doc/library/http.cookiejar.rst @@ -159,7 +159,7 @@ contained :class:`Cookie` objects. the :class:`CookieJar`'s :class:`CookiePolicy` instance are true and false respectively), the :mailheader:`Cookie2` header is also added when appropriate. - The *request* object (usually a :class:`urllib.request..Request` instance) + 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`, :meth:`get_header`, :meth:`header_items`, :meth:`add_unredirected_header` |