This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Markup typo in http.cookiejar doc
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, miss-islington, xtreak
Priority: normal Keywords: easy, patch

Created on 2019-07-13 05:49 by xtreak, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 14731 merged zvyn, 2019-07-13 09:06
PR 14733 merged miss-islington, 2019-07-13 10:17
PR 14734 merged miss-islington, 2019-07-13 10:18
Messages (4)
msg347775 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2019-07-13 05:49
CookieJar.add_cookie_header in Doc/library/http.cookiejar.rst contains the below statement where .. is present that causes the markup to not link to the correct docs. The fix would be to remove extra dot in the docs and verify the rendered doc page.

https://docs.python.org/3/library/http.cookiejar.html#http.cookiejar.CookieJar.add_cookie_header

The *request* object (usually a :class:`urllib.request..Request` instance)

Marking this as easy for first time contributors who have not made a PR.
msg347796 - (view) Author: miss-islington (miss-islington) Date: 2019-07-13 10:17
New changeset b5bbb8a740eaf46c78d122185de8b072e9deea2a by Miss Islington (bot) (Milan Oberkirch) in branch 'master':
bpo-37580: Fix typo in http.cookiejar documentation (GH-14731)
https://github.com/python/cpython/commit/b5bbb8a740eaf46c78d122185de8b072e9deea2a
msg347797 - (view) Author: miss-islington (miss-islington) Date: 2019-07-13 10:23
New changeset 36494a94914c4d3f249ca10b6a2d6194f6093cc6 by Miss Islington (bot) in branch '3.7':
bpo-37580: Fix typo in http.cookiejar documentation (GH-14731)
https://github.com/python/cpython/commit/36494a94914c4d3f249ca10b6a2d6194f6093cc6
msg347798 - (view) Author: miss-islington (miss-islington) Date: 2019-07-13 10:24
New changeset 5da83b417e48aecd7698387d3f37c603162fd46e by Miss Islington (bot) in branch '3.8':
bpo-37580: Fix typo in http.cookiejar documentation (GH-14731)
https://github.com/python/cpython/commit/5da83b417e48aecd7698387d3f37c603162fd46e
History
Date User Action Args
2022-04-11 14:59:18adminsetgithub: 81761
2019-07-13 12:56:41petr.viktorinsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-07-13 10:24:51miss-islingtonsetmessages: + msg347798
2019-07-13 10:23:13miss-islingtonsetmessages: + msg347797
2019-07-13 10:18:03miss-islingtonsetpull_requests: + pull_request14528
2019-07-13 10:17:35miss-islingtonsetpull_requests: + pull_request14527
2019-07-13 10:17:20miss-islingtonsetnosy: + miss-islington
messages: + msg347796
2019-07-13 09:06:51zvynsetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request14524
2019-07-13 05:49:45xtreakcreate