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: Doc: pprint example uses dead URL
Type: Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, lys.nikolaou, methane, miss-islington, xtreak
Priority: normal Keywords: patch

Created on 2018-10-26 07:40 by methane, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 10201 merged pablogsal, 2018-10-28 21:17
PR 10282 merged miss-islington, 2018-11-01 12:29
PR 10283 merged miss-islington, 2018-11-01 12:29
Messages (5)
msg328517 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2018-10-26 07:40
https://mail.python.org/pipermail/docs/2018-October/037913.html

Dead URL: http://pypi.org/project/Twisted/json
Valid URL: https://pypi.org/pypi/Twisted/json

But JSON returned by the valid URL seems too long for the example.
Is there a better sample JSON we can use in the example?
msg328756 - (view) Author: Lysandros Nikolaou (lys.nikolaou) * (Python committer) Date: 2018-10-28 21:32
Also this throws a TypeError, because http_info.get_content_charset() returns None with the new link. I think, this should be fixed as well.
msg329058 - (view) Author: miss-islington (miss-islington) Date: 2018-11-01 12:29
New changeset bf46a09dec372b85846216bd692d648dac08ac36 by Miss Islington (bot) (Pablo Galindo) in branch 'master':
bpo-35075: Fix broken url in the pprint documentation (GH-10201)
https://github.com/python/cpython/commit/bf46a09dec372b85846216bd692d648dac08ac36
msg329068 - (view) Author: miss-islington (miss-islington) Date: 2018-11-01 13:37
New changeset 7344b9fa0ef7bd8b902e7aa9a8f74b5dce915e59 by Miss Islington (bot) in branch '3.6':
bpo-35075: Fix broken url in the pprint documentation (GH-10201)
https://github.com/python/cpython/commit/7344b9fa0ef7bd8b902e7aa9a8f74b5dce915e59
msg329088 - (view) Author: miss-islington (miss-islington) Date: 2018-11-01 21:33
New changeset 7d35553138d8b2799ae68601ce836a3647509718 by Miss Islington (bot) in branch '3.7':
bpo-35075: Fix broken url in the pprint documentation (GH-10201)
https://github.com/python/cpython/commit/7d35553138d8b2799ae68601ce836a3647509718
History
Date User Action Args
2022-04-11 14:59:07adminsetgithub: 79256
2018-11-02 06:03:03methanesetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-11-01 21:33:57miss-islingtonsetmessages: + msg329088
2018-11-01 13:37:33miss-islingtonsetmessages: + msg329068
2018-11-01 12:29:55miss-islingtonsetpull_requests: + pull_request9594
2018-11-01 12:29:48miss-islingtonsetpull_requests: + pull_request9593
2018-11-01 12:29:44miss-islingtonsetnosy: + miss-islington
messages: + msg329058
2018-10-28 21:32:55lys.nikolaousetnosy: + lys.nikolaou
messages: + msg328756
2018-10-28 21:17:47pablogsalsetkeywords: + patch
stage: patch review
pull_requests: + pull_request9519
2018-10-26 10:19:35xtreaksetnosy: + xtreak
2018-10-26 07:40:43methanecreate