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: pydoc does not append .html to documentation
Type: Stage: resolved
Components: Documentation Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, mdk
Priority: normal Keywords: patch

Created on 2021-01-08 21:55 by mdk, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 24174 merged mdk, 2021-01-08 22:08
Messages (3)
msg384693 - (view) Author: Julien Palard (mdk) * (Python committer) Date: 2021-01-08 21:55
Running `python3 -m pydoc ensurepip` gives me:

https://docs.python.org/3.9/library/ensurepip
but it should be:

https://docs.python.org/3.9/library/ensurepip.html

Issue is in getdocloc function on the line:

    docloc = "%s/%s" % (docloc.rstrip("/"), object.__name__.lower())

But it previously worked as the nginx config for the doc server contains:

    # Emulate Apache's content-negotiation. Was a temporary measure,
    # but now people are using it like a feature.
    location ~ ^/((2|3)(\.[0-8])?|dev)/\w+/[\d\w\.]+(?!\.html)$ {
        if (-f "${request_filename}.html") {
            return 301 https://$host:$request_uri.html;
        }
    }

(So yes "people are using it like a feature" contains pydoc :))

Notice the [0-8], which does not match for my /3.9/.

I propose to fix the issue on both sides:
- On psf-salt to allow 3.9 to get the "temporary" measure.
- pydoc side to simplify the code
msg384694 - (view) Author: Julien Palard (mdk) * (Python committer) Date: 2021-01-08 22:11
This is now fixed on the docs server thanks to [1], so it should work for already release Python 3.9 :)

[1]: https://github.com/python/psf-salt/pull/198

I still did a PR on cpython to avoid a redirection, and get cpython itself out of the "people use this temporary fix as a feature now".
msg385633 - (view) Author: Julien Palard (mdk) * (Python committer) Date: 2021-01-25 14:50
New changeset eb9983c59b0683270328b5c40a115bb028209511 by Julien Palard in branch 'master':
bpo-42869: Avoid an HTTP redirection. (GH-24174)
https://github.com/python/cpython/commit/eb9983c59b0683270328b5c40a115bb028209511
History
Date User Action Args
2022-04-11 14:59:40adminsetgithub: 87035
2021-01-25 14:50:41mdksetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-01-25 14:50:23mdksetmessages: + msg385633
2021-01-08 22:11:03mdksetmessages: + msg384694
2021-01-08 22:08:45mdksetkeywords: + patch
stage: patch review
pull_requests: + pull_request23001
2021-01-08 21:55:55mdkcreate