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: Use HTTPS in help()
Type: Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Mariatta, Qian Yun, docs@python
Priority: normal Keywords: patch

Created on 2017-12-28 12:08 by Qian Yun, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 5030 merged python-dev, 2017-12-28 12:17
PR 5031 merged python-dev, 2017-12-28 14:38
Messages (5)
msg309127 - (view) Author: Qian Yun (Qian Yun) * Date: 2017-12-28 12:08
In python3, in the output of help(), there is link
http://docs.python.org/3.6/tutorial/.
It should be made into https.

There are already some issues about changing http links to https:
https://bugs.python.org/issue25910
https://bugs.python.org/issue26736

But this link is still unchanged.
msg309128 - (view) Author: Qian Yun (Qian Yun) * Date: 2017-12-28 12:18
I have created a pull request at:

https://github.com/python/cpython/pull/5030
msg309130 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-12-28 14:37
New changeset e5681b9822c633c77ddfeb94585d58895e0ecff5 by Mariatta (oldk) in branch 'master':
bpo-32440: Update the docs URL to https in help() (GH-5030)
https://github.com/python/cpython/commit/e5681b9822c633c77ddfeb94585d58895e0ecff5
msg309132 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-12-28 15:16
New changeset 6eb232c52a03e31fc47842e70fc7833198744c2b by Mariatta (Miss Islington (bot)) in branch '3.6':
bpo-32440: Update the docs URL to https in help() (GH-5030) (GH-5031)
https://github.com/python/cpython/commit/6eb232c52a03e31fc47842e70fc7833198744c2b
msg309133 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-12-28 15:17
Thanks!
History
Date User Action Args
2022-04-11 14:58:56adminsetgithub: 76621
2017-12-28 15:17:40Mariattasetstatus: open -> closed
versions: + Python 3.6
messages: + msg309133

resolution: fixed
stage: patch review -> resolved
2017-12-28 15:16:41Mariattasetmessages: + msg309132
2017-12-28 14:38:13python-devsetpull_requests: + pull_request4918
2017-12-28 14:37:49Mariattasetnosy: + Mariatta
messages: + msg309130
2017-12-28 12:18:30Qian Yunsetmessages: + msg309128
2017-12-28 12:17:26python-devsetkeywords: + patch
stage: patch review
pull_requests: + pull_request4917
2017-12-28 12:08:12Qian Yuncreate