Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes from3 commits
43a8b8fe97509295c516f3616b40d7a007bFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -263,6 +263,24 @@ | ||
| r'https://github.com/python/cpython/tree/.*':'https://github.com/python/cpython/blob/.*' | ||
| } | ||
| linkcheck_anchors_ignore= [ | ||
| # ignore anchors that starts with a '/', e.g. Wikipedia media: | ||
rffontenelle marked this conversation as resolved. OutdatedShow resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| # https://en.wikipedia.org/wiki/Walrus#/media/File:Pacific_Walrus_-_Bull_(8247646168).jpg | ||
| r'\/.*', | ||
| ] | ||
| linkcheck_ignore= [ | ||
| # The crawler gets "Anchor not found" | ||
| r'https://github.com.+?#.*', | ||
| r'https://devguide.python.org.+?/#.*', | ||
| r'https://developer.apple.com/documentation/.+?#.*', | ||
rffontenelle marked this conversation as resolved. OutdatedShow resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| # Robot crawlers not allowed: "403 Client Error: Forbidden" | ||
| r'https://support.enthought.com/hc/.*', | ||
| # SSLError CertificateError, even though it is valid | ||
| r'https://unix.org/version2/whatsnew/lp64_wp.html', | ||
| ] | ||
| # Options for extensions | ||
| # ---------------------- | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -129,14 +129,10 @@ involved in creating and publishing a project: | ||
| * `Uploading the project to the Python Package Index`_ | ||
| * `The .pypirc file`_ | ||
| .. _Project structure: https://packaging.python.org/tutorials/packaging-projects/#packaging-python-projects | ||
| .. _Building and packaging the project: https://packaging.python.org/tutorials/packaging-projects/#creating-the-package-files | ||
| .. _Uploading the project to the Python Package Index: https://packaging.python.org/tutorials/packaging-projects/#uploading-the-distribution-archives | ||
| .. _The .pypirc file: https://packaging.python.org/specifications/pypirc/ | ||
rffontenelle marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| How do I...? | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1208,8 +1208,8 @@ General | ||
| ------- | ||
| **Structure and Interpretation of Computer Programs**, by Harold Abelson and | ||
| Gerald Jay Sussman with Julie Sussman.The book can be found at | ||
| https://mitpress.mit.edu/sicp. In this classic textbook of computer science, | ||
Comment on lines +1211 to +1212 Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. The MIT Press website just says that the book is out of print -- I foundanother resource on the MIT domain, but I don't know how long-term the link will be. ContributorAuthor
| ||
| chapters 2 and 3 discuss the use of sequences and streams to organize the data | ||
| flow inside a program. The book uses Scheme for its examples, but many of the | ||
| design approaches described in these chapters are applicable to functional-style | ||