10000 GH-103484: Fix broken links reported by linkcheck by rffontenelle · Pull Request #103608 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-103484: Fix broken links reported by linkcheck #103608

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

Merged
merged 5 commits into from
Apr 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Doc: Alphabetize items in linkcheck_ignore
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
  • Loading branch information
rffontenelle and hugovk authored Apr 19, 2023
commit 3616b40187eeff898fb2521cef472b2c7f7609eb
4 changes: 2 additions & 2 deletions Doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@

linkcheck_ignore = [
# The crawler gets "Anchor not found"
r'https://github.com.+?#.*',
r'https://devguide.python.org.+?/#.*',
r'https://developer.apple.com/documentation/.+?#.*',
r'https://devguide.python.org.+?/#.*',
r'https://github.com.+?#.*',
# Robot crawlers not allowed: "403 Client Error: Forbidden"
r'https://support.enthought.com/hc/.*',
# SSLError CertificateError, even though it is valid
Expand Down
0