-
-
Notifications
You must be signed in to change notification settings - Fork 31.8k
modules shouldn't link themselves in their documentations #133291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
docs
Documentation in the Doc dir
Comments
There are a few thousand instances across a lot files. List of all occurances in Doc/library
Is it realistic to do this? Maybe this should be done as part of other prs? |
I agree with Stan, a module linking to itself is a bit odd but really harmless, whereas changing everything will be needless churn. @Yzi-Li thank you for opening the issue, but I would suggest you work on something else instead. A |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Documentation
Some modules (e.g.
__future__
,ast
) use:mod:`ast`
to link themselves in the text. But this is meaningless. We should use:mod:`!ast`
to suppress references.I am working on this issue.
The text was updated successfully, but these errors were encountered: