-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
Docs: shutil: Hide module name from local (anchor) links #6695
Conversation
Inside all the methods descriptions, local links to other methods do not show the module name. For example, it's: copy2() uses copystat() to copy the file metadata. not: shutil.copy2() uses shutil.copystat() to copy the file metadata. This commit fixes the very few outliers that were not following that pattern.
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed the PSF contributor agreement (CLA). Unfortunately our records indicate you have not signed the CLA. For legal reasons we need you to sign this before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. When your account is ready, please add a comment in this pull request Thanks again to your contribution and we look forward to looking at it! |
I've signed the CLA. No issue number since this is a very simple documentation fix. No news entry is necessary. |
Thanks @aureliojargas! Do you mind updating you branch to resolve the conflict? |
Done. Tests are green again. |
Thanks @aureliojargas for the PR, and @csabella for merging it 🌮🎉.. I'm working now to backport this PR to: 3.7. |
Sorry, @aureliojargas and @csabella, I could not cleanly backport this to |
@aureliojargas Thank you for the suggestion and the pull request. Your change has now been merged. 🎉 🎉 |
Inside all the methods descriptions, local links to other
shutil
methods do not show the module name.For example, it's:
not:
This commit fixes the very few outliers that were not following that pattern.