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.

Author Akarys
Recipients Akarys, docs@python
Date 2021-11-09.08:18:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1636445896.9.0.441408433097.issue45762@roundup.psfhosted.org>
In-reply-to
Content
Sphinx generates a quite useful inventory file, listing all the different symbols available inside the documentation. You can find the docs.python.org inventory over at https://docs.python.org/objects.inv. The syntax of this file can be found here https://sphobjinv.readthedocs.io/en/latest/syntax.html.

We use it over at Python Discord to power up our `!docs` command. It allows us to look up symbols such as `asyncio.run`, have nicely formatted documentation and links to the web page. 

The problem is due to where the `list` method documentations are located, inside `/tutorial/datastructures` (https://docs.python.org/3/tutorial/datastructures.html), no symbol is exported for those, making commands such as `!docs list.append` fail, which is quite a bummer. It would be very nice to have access to those.
History
Date User Action Args
2021-11-09 08:18:16Akaryssetrecipients: + Akarys, docs@python
2021-11-09 08:18:16Akaryssetmessageid: <1636445896.9.0.441408433097.issue45762@roundup.psfhosted.org>
2021-11-09 08:18:16Akaryslinkissue45762 messages
2021-11-09 08:18:16Akaryscreate