René's URL Explorer Experiment


Title: GH-103484: Fix broken links reported by linkcheck by rffontenelle · Pull Request #103608 · python/cpython · GitHub

Open Graph Title: GH-103484: Fix broken links reported by linkcheck by rffontenelle · Pull Request #103608 · python/cpython

X Title: GH-103484: Fix broken links reported by linkcheck by rffontenelle · Pull Request #103608 · python/cpython

Description: This is another patch required to fix the current state of make linkcheck in Python Docs, see #103484. This pull request fixes some broken links reported by make linkcheck. The backport to 3.11 has a few differences and I have already a patch ready for it, just waiting for any change in this one. Find below the reported error and what solution I applied in this PR: distributing/index.rst:128: [broken] https://packaging.python.org/tutorials/packaging-projects/#creating-the-package-files: distributing/index.rst:127: [broken] https://packaging.python.org/tutorials/packaging-projects/#packaging-python-projects: distributing/index.rst:129: [broken] https://packaging.python.org/tutorials/packaging-projects/#uploading-the-distribution-archives: distributing/index.rst:130: [broken] https://packaging.python.org/specifications/pypirc/: The link is fine, but for some reason a newline in the doc resulted in being considered as broken for linkcheck, even though it is not broken in the documentation. I removed that newline and this made linkcheck happy. library/stdtypes.rst:1607: [broken] http://www.unicode.org/versions/Unicode15.0.0/ch03.pdf#G53253: 'utf-8' codec can't decode byte 0xe2 in position 10: invalid continuation byte library/stdtypes.rst:1767: [broken] https://www.unicode.org/versions/Unicode15.0.0/ch04.pdf#G91002: 'utf-8' codec can't decode byte 0xe2 in position 10: invalid continuation byte library/stdtypes.rst:1906: [broken] https://www.unicode.org/versions/Unicode15.0.0/ch03.pdf#G34078: 'utf-8' codec can't decode byte 0xe2 in position 10: invalid continuation byte That's sphinx-doc/sphinx#11041. I removed the anchor and added the section name next to it's [section] number so the reader has no doubt of what section the text is talking about. whatsnew/changelog.rst:18176: [broken] https://: Invalid URL 'https://': No host supplied This is the code sample urllib.request.urlopen('https://...'). at Misc/NEWS.d/3.9.0a1.rst. Added it to ignored list as 'https:\/\/$' ($ to not match any other link). howto/urllib2.rst:457: [broken] http://www.voidspace.org.uk/python/articles/authentication.shtml: HTTPConnectionPool(host='www.voidspace.org.uk', port=80): Max retries exceeded with url: /python/articles/authentication.shtml (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')) www.voidspace.org.uk is down, so I replaced it with a Wayback Machine link. There was a code sample that also used this broken link and I replaced with a valid link: http://www.python.org following the previous example in the same file whatsnew/2.6.rst:174: [broken] http://www.upfrontsoftware.co.za: HTTPSConnectionPool(host='www.upfrontsoftware.co.za', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError("hostname 'www.upfrontsoftware.co.za' doesn't match either of 'agibase.com', 'gazette.co.za', 'icinga.siyavula.com', 'icinga.upfronthosting.co.za', 'lists.agibase.com', 'test.agibase.com', 'upfrontsoftware.co.za', 'www.agibase.com', 'www.gazette.co.za'"))) Fix removing 'www', replacing with https://upfrontsoftware.co.za using/mac.rst:20: [broken] https://developer.apple.com/documentation/macos-release-notes/macos-12_3-release-notes#Python: Anchor 'Python' not found bugs.rst:39: [broken] https://devguide.python.org/docquality/#helping-with-documentation: Anchor 'helping-with-documentation' not found whatsnew/3.4.rst:1962: [broken] https://devguide.python.org/coverage/#measuring-coverage-of-c-code-with-gcov-and-lcov: Anchor 'measuring-coverage-of-c-code-with-gcov-and-lcov' not found bugs.rst:41: [broken] https://devguide.python.org/documenting/#translating: Anchor 'translating' not found library/gc.rst:101: [broken] https://devguide.python.org/garbage_collector/#collecting-the-oldest-generation: Anchor 'collecting-the-oldest-generation' not found using/unix.rst:69: [broken] https://devguide.python.org/setup/#get-the-source-code: Anchor 'get-the-source-code' not found These links lead to the expected anchors without issue, so I added ignore entries to these links. whatsnew/3.8.rst:77: [broken] https://en.wikipedia.org/wiki/Walrus#/media/File:Pacific_Walrus_-_Bull_(8247646168).jpg: Anchor '/media/File:Pacific_Walrus_-_Bull_(8247646168).jpg' not found The link is works, but the #/... is considered by linkcheck as invalid anchor. Added it to ignored anchors. whatsnew/changelog.rst:16408: [broken] https://fishshell.com/docs/current/commands.html#source: Anchor 'source' not found The source command is now on another page, so I updated the URL. whatsnew/3.11.rst:1320: [broken] https://github.com/faster-cpython/ideas#published-results: Anchor 'published-results' not found Anchors from Markdown files in GitHub repositories are not recognized, even though they work just fine. Hence I added this case to ignored links. whatsnew/changelog.rst:15577: [broken] https://importlib-metadata.readthedocs.io/en/latest/changelog (links).html#v1-5-0: 404 Client Error: Not Found for url: https://importlib-metadata.readthedocs.io/en/latest/changelog (links).html Updated the URL with the new page containing the versions history. howto/functional.rst:1210: [broken] https://mitpress.mit.edu/sicp/: 404 Client Error: Not Found for url: https://mitpress.mit.edu/sicp/ Removing the trailing '/' solves the 404 Client Error. However, there is another issue: The book is no longer freely available (wayback machine disagrees), so I updated the text to say "The book can be found at" instead of "Full text at". whatsnew/2.7.rst:2105: [broken] https://sourceware.org/gdb/current/onlinedocs/gdb/Python.html: 404 Client Error: Not Found for url: https://sourceware.org/gdb/current/onlinedocs/gdb/Python.html Used Wayback Machine because the paragraph mentions GDB 7, so I linked to the latest GDB online docs available, from 2011. using/windows.rst:554: [broken] https://support.enthought.com/hc/en-us/articles/360038600051-Canopy-GUI-end-of-life-transition-to-the-Enthought-Deployment-Manager-EDM-and-Visual-Studio-Code: 403 Client Error: Forbidden for url: https://support.enthought.com/hc/en-us/articles/360038600051-Canopy-GUI-end-of-life-transition-to-the-Enthought-Deployment-Manager-EDM-and-Visual-Studio-Code Looks like crawling in this website is not allowed: link is ok in the browser, but fails with curl or sphinx's linkcheck. Added to ignored links. library/readline.rst:20: [broken] https://tiswww.cwru.edu/php/chet/readline/rluserman.html#SEC9: Anchor 'SEC9' not found The SEC9 anchor was about "Readline Init File" (wayback machine link). I updated the anchor to match the same subject in the updated documentation. faq/library.rst:780: [broken] https://twistedmatrix.com/trac/: 404 Client Error: Not Found for url: https://twisted.org/trac/ Updated URL to https://twisted.org/ whatsnew/2.5.rst:879: [broken] https://unix.org/version2/whatsnew/lp64_wp.html: HTTPSConnectionPool(host='unix.org', port=443): Max retries exceeded with url: /version2/whatsnew/lp64_wp.html (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate in certificate chain (_ssl.c:1129)'))) GoDaddy-hosted website, and GoDaddy's certificate chain is not installed causing curl and linkcheck to fail. Using a web browser works, though. So I added this to the ignored links list. whatsnew/changelog.rst:22339: [broken] https://www.openssl.org/docs/man1.1.0/ssl/SSL_CTX_set_min_proto_version.html: 404 Client Error: Not Found for url: https://www.openssl.org/docs/man1.1.0/ssl/SSL_CTX_set_min_proto_version.html Updated the URL, using the version 1.1.1 published as the closest possible to 1.1.0 mentioned in the paragraph. library/zipfile.rst:10: [broken] https://github.com/python/cpython/tree/main/Lib/zipfile.py: 404 Client Error: Not Found for url: https://github.com/python/cpython/tree/main/Lib/zipfile.py zipfile is a package since #98103. This change is post-3.11, hence a backport must not include this or will cause another 'broken' entry by linkcheck. Issue: gh-103484

Open Graph Description: This is another patch required to fix the current state of make linkcheck in Python Docs, see #103484. This pull request fixes some broken links reported by make linkcheck. The backport to 3.11 has...

X Description: This is another patch required to fix the current state of make linkcheck in Python Docs, see #103484. This pull request fixes some broken links reported by make linkcheck. The backport to 3.11 has...

Opengraph URL: https://github.com/python/cpython/pull/103608

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:7e043563-d0c0-a1a9-53fa-5d2c05935bb7
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idADBC:1CEAED:7017F3:975E1E:696AB09D
html-safe-nonce73c7fd7f9c163cba019de068532930530bc2005147dbd5269bf27c03d92c3862
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBREJDOjFDRUFFRDo3MDE3RjM6OTc1RTFFOjY5NkFCMDlEIiwidmlzaXRvcl9pZCI6Ijc5NjIyMzMxNzY1MjE4Nzk3MDkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacfb771f087deb46f98328407998c8534b2e15a1c62adc6a9086a1fd7df1720470
hovercard-subject-tagpull_request:1318443762
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/python/cpython/pull/103608/files
twitter:imagehttps://avatars.githubusercontent.com/u/1571783?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/1571783?s=400&v=4
og:image:altThis is another patch required to fix the current state of make linkcheck in Python Docs, see #103484. This pull request fixes some broken links reported by make linkcheck. The backport to 3.11 has...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None4fa1799b6a53c2d30c950d74230781bef9e7f61138c72c7727e4b83f0743752b
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/python/cpython git https://github.com/python/cpython.git
octolytics-dimension-user_id1525981
octolytics-dimension-user_loginpython
octolytics-dimension-repository_id81598961
octolytics-dimension-repository_nwopython/cpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id81598961
octolytics-dimension-repository_network_root_nwopython/cpython
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release41f276818bd204c4a30a0281fb3c576298d9474c
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/pull/103608/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F103608%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F103608%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/pull/103608/files
Reloadhttps://github.com/python/cpython/pull/103608/files
Reloadhttps://github.com/python/cpython/pull/103608/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/103608/files
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 33.9k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 71.1k https://github.com/login?return_to=%2Fpython%2Fcpython
Code https://github.com/python/cpython
Issues 5k+ https://github.com/python/cpython/issues
Pull requests 2.1k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects 31 https://github.com/python/cpython/projects
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/python/cpython/security
Please reload this pagehttps://github.com/python/cpython/pull/103608/files
Insights https://github.com/python/cpython/pulse
Code https://github.com/python/cpython
Issues https://github.com/python/cpython/issues
Pull requests https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
hugovkhttps://github.com/hugovk
python:mainhttps://github.com/python/cpython/tree/main
rffontenelle:fix-broken-linkshttps://github.com/rffontenelle/cpython/tree/fix-broken-links
Conversation 39 https://github.com/python/cpython/pull/103608
Commits 5 https://github.com/python/cpython/pull/103608/commits
Checks 0 https://github.com/python/cpython/pull/103608/checks
Files changed https://github.com/python/cpython/pull/103608/files
Please reload this pagehttps://github.com/python/cpython/pull/103608/files
GH-103484: Fix broken links reported by linkcheck https://github.com/python/cpython/pull/103608/files#top
Show all changes 5 commits https://github.com/python/cpython/pull/103608/files
43a8b8f Doc: Fix broken links reported by linkcheck rffontenelle Apr 18, 2023 https://github.com/python/cpython/pull/103608/commits/43a8b8f58fb7ba6eadb7ba5cb6ee6712f6f36fdc
e975092 Apply suggestions from code review rffontenelle Apr 19, 2023 https://github.com/python/cpython/pull/103608/commits/e9750920e11ac0e73fb74b4d42360155a69d4c8d
95c516f Doc: Make mark-up code as literal rffontenelle Apr 18, 2023 https://github.com/python/cpython/pull/103608/commits/95c516f4413a4f29e07ecb48e8825d1270e9aa38
3616b40 Doc: Alphabetize items in linkcheck_ignore rffontenelle Apr 19, 2023 https://github.com/python/cpython/pull/103608/commits/3616b40187eeff898fb2521cef472b2c7f7609eb
d7a007b Doc: Improve comment in sphinx conf rffontenelle Apr 21, 2023 https://github.com/python/cpython/pull/103608/commits/d7a007b8e45eda5ba68243ae7cb1d90b15be1153
Clear filters https://github.com/python/cpython/pull/103608/files
Please reload this pagehttps://github.com/python/cpython/pull/103608/files
Please reload this pagehttps://github.com/python/cpython/pull/103608/files
conf.py https://github.com/python/cpython/pull/103608/files#diff-bd848f922db8b27516214e75f544d03f48a19eeebfe2509341a7c18e0a115c8c
index.rst https://github.com/python/cpython/pull/103608/files#diff-4c41c23c9e6551cba96bd7a9caf439f5786ed7c0c308d88712256a4cb02f58bb
library.rst https://github.com/python/cpython/pull/103608/files#diff-6aefff0c1e057643e67c23639c82c8a23f9c02dc31faed4f5c711d23e3eb2d38
functional.rst https://github.com/python/cpython/pull/103608/files#diff-9cd11eca066cfdebdf5b8d07ccf1508549bbdb0c615feb859910eb20f23581d0
urllib2.rst https://github.com/python/cpython/pull/103608/files#diff-0b057b809776057017366aefca2053bb4bffc023afa180af0cb41bf121fd7665
readline.rst https://github.com/python/cpython/pull/103608/files#diff-984bd5a3e1b8a14868114bef5c039b6ea814c6174b788e503759841fe8cd1999
stdtypes.rst https://github.com/python/cpython/pull/103608/files#diff-08a31a70dd1f6d97aa8dacdce77db4de04c700d9949be1af611a595186aad5b3
zipfile.rst https://github.com/python/cpython/pull/103608/files#diff-8a20c37fb313d7b188ae15bb57b351cc2ab73cbdcb6b2aee44cf2f8451768086
2.6.rst https://github.com/python/cpython/pull/103608/files#diff-3282d288c08e0c40ed023136cea3d3f76aea8b054f8b6e73220ec94e34110f7d
2.7.rst https://github.com/python/cpython/pull/103608/files#diff-fa50a11053247af0ec10174386985a32d16499a00038c87932855cabc79a5adb
3.7.0b2.rst https://github.com/python/cpython/pull/103608/files#diff-0f491e62a30a79c537a8fd3423e2fea963a748f8db60693a590263683f1c9f51
3.8.0a1.rst https://github.com/python/cpython/pull/103608/files#diff-7831d00ce38a3fbb0910b02a019a98a3ca7c057f921251dea7b053b23a076432
3.9.0a1.rst https://github.com/python/cpython/pull/103608/files#diff-05cc76b435ced36885869cfc62fe3ec20fcc8522edcce2e05c9faced81b09c81
3.9.0a2.rst https://github.com/python/cpython/pull/103608/files#diff-811d92c0f498035165b304b3fda39502bd9fc538455f8a519d625b9615479919
3.9.0a4.rst https://github.com/python/cpython/pull/103608/files#diff-ff333ccd39b0ec354335a651495cf269903b87e165f7725a44724cb191703a50
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L104
Doc/conf.pyhttps://github.com/python/cpython/pull/103608/files#diff-bd848f922db8b27516214e75f544d03f48a19eeebfe2509341a7c18e0a115c8c
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Doc/conf.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-bd848f922db8b27516214e75f544d03f48a19eeebfe2509341a7c18e0a115c8c
https://github.com/python/cpython/pull/103608/files#diff-bd848f922db8b27516214e75f544d03f48a19eeebfe2509341a7c18e0a115c8c
Doc/distributing/index.rsthttps://github.com/python/cpython/pull/103608/files#diff-4c41c23c9e6551cba96bd7a9caf439f5786ed7c0c308d88712256a4cb02f58bb
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Doc/distributing/index.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-4c41c23c9e6551cba96bd7a9caf439f5786ed7c0c308d88712256a4cb02f58bb
Please reload this pagehttps://github.com/python/cpython/pull/103608/files
https://github.com/python/cpython/pull/103608/files#diff-4c41c23c9e6551cba96bd7a9caf439f5786ed7c0c308d88712256a4cb02f58bb
Doc/faq/library.rsthttps://github.com/python/cpython/pull/103608/files#diff-6aefff0c1e057643e67c23639c82c8a23f9c02dc31faed4f5c711d23e3eb2d38
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Doc/faq/library.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-6aefff0c1e057643e67c23639c82c8a23f9c02dc31faed4f5c711d23e3eb2d38
https://github.com/python/cpython/pull/103608/files#diff-6aefff0c1e057643e67c23639c82c8a23f9c02dc31faed4f5c711d23e3eb2d38
Doc/howto/functional.rsthttps://github.com/python/cpython/pull/103608/files#diff-9cd11eca066cfdebdf5b8d07ccf1508549bbdb0c615feb859910eb20f23581d0
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Doc/howto/functional.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-9cd11eca066cfdebdf5b8d07ccf1508549bbdb0c615feb859910eb20f23581d0
AA-Turnerhttps://github.com/AA-Turner
Apr 20, 2023https://github.com/python/cpython/pull/103608/files#r1173144753
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
another resourcehttps://mitp-content-server.mit.edu/books/content/sectbyfn/books_pres_0/6515/sicp.zip/index.html
Please reload this pagehttps://github.com/python/cpython/pull/103608/files
rffontenellehttps://github.com/rffontenelle
Apr 21, 2023https://github.com/python/cpython/pull/103608/files#r1173595332
Please reload this pagehttps://github.com/python/cpython/pull/103608/files
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/103608/files
https://github.com/python/cpython/pull/103608/files#diff-9cd11eca066cfdebdf5b8d07ccf1508549bbdb0c615feb859910eb20f23581d0
Doc/howto/urllib2.rsthttps://github.com/python/cpython/pull/103608/files#diff-0b057b809776057017366aefca2053bb4bffc023afa180af0cb41bf121fd7665
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Doc/howto/urllib2.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-0b057b809776057017366aefca2053bb4bffc023afa180af0cb41bf121fd7665
https://github.com/python/cpython/pull/103608/files#diff-0b057b809776057017366aefca2053bb4bffc023afa180af0cb41bf121fd7665
https://github.com/python/cpython/pull/103608/files#diff-0b057b809776057017366aefca2053bb4bffc023afa180af0cb41bf121fd7665
https://github.com/python/cpython/pull/103608/files#diff-0b057b809776057017366aefca2053bb4bffc023afa180af0cb41bf121fd7665
Doc/library/readline.rsthttps://github.com/python/cpython/pull/103608/files#diff-984bd5a3e1b8a14868114bef5c039b6ea814c6174b788e503759841fe8cd1999
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Doc/library/readline.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-984bd5a3e1b8a14868114bef5c039b6ea814c6174b788e503759841fe8cd1999
https://github.com/python/cpython/pull/103608/files#diff-984bd5a3e1b8a14868114bef5c039b6ea814c6174b788e503759841fe8cd1999
Doc/library/stdtypes.rsthttps://github.com/python/cpython/pull/103608/files#diff-08a31a70dd1f6d97aa8dacdce77db4de04c700d9949be1af611a595186aad5b3
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Doc/library/stdtypes.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-08a31a70dd1f6d97aa8dacdce77db4de04c700d9949be1af611a595186aad5b3
https://github.com/python/cpython/pull/103608/files#diff-08a31a70dd1f6d97aa8dacdce77db4de04c700d9949be1af611a595186aad5b3
https://github.com/python/cpython/pull/103608/files#diff-08a31a70dd1f6d97aa8dacdce77db4de04c700d9949be1af611a595186aad5b3
https://github.com/python/cpython/pull/103608/files#diff-08a31a70dd1f6d97aa8dacdce77db4de04c700d9949be1af611a595186aad5b3
https://github.com/python/cpython/pull/103608/files#diff-08a31a70dd1f6d97aa8dacdce77db4de04c700d9949be1af611a595186aad5b3
https://github.com/python/cpython/pull/103608/files#diff-08a31a70dd1f6d97aa8dacdce77db4de04c700d9949be1af611a595186aad5b3
https://github.com/python/cpython/pull/103608/files#diff-08a31a70dd1f6d97aa8dacdce77db4de04c700d9949be1af611a595186aad5b3
https://github.com/python/cpython/pull/103608/files#diff-08a31a70dd1f6d97aa8dacdce77db4de04c700d9949be1af611a595186aad5b3
Doc/library/zipfile.rsthttps://github.com/python/cpython/pull/103608/files#diff-8a20c37fb313d7b188ae15bb57b351cc2ab73cbdcb6b2aee44cf2f8451768086
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Doc/library/zipfile.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-8a20c37fb313d7b188ae15bb57b351cc2ab73cbdcb6b2aee44cf2f8451768086
https://github.com/python/cpython/pull/103608/files#diff-8a20c37fb313d7b188ae15bb57b351cc2ab73cbdcb6b2aee44cf2f8451768086
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L114
Doc/whatsnew/2.6.rsthttps://github.com/python/cpython/pull/103608/files#diff-3282d288c08e0c40ed023136cea3d3f76aea8b054f8b6e73220ec94e34110f7d
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Doc/whatsnew/2.6.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-3282d288c08e0c40ed023136cea3d3f76aea8b054f8b6e73220ec94e34110f7d
https://github.com/python/cpython/pull/103608/files#diff-3282d288c08e0c40ed023136cea3d3f76aea8b054f8b6e73220ec94e34110f7d
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L114
Doc/whatsnew/2.7.rsthttps://github.com/python/cpython/pull/103608/files#diff-fa50a11053247af0ec10174386985a32d16499a00038c87932855cabc79a5adb
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Doc/whatsnew/2.7.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-fa50a11053247af0ec10174386985a32d16499a00038c87932855cabc79a5adb
https://github.com/python/cpython/pull/103608/files#diff-fa50a11053247af0ec10174386985a32d16499a00038c87932855cabc79a5adb
Misc/NEWS.d/3.7.0b2.rsthttps://github.com/python/cpython/pull/103608/files#diff-0f491e62a30a79c537a8fd3423e2fea963a748f8db60693a590263683f1c9f51
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Misc/NEWS.d/3.7.0b2.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-0f491e62a30a79c537a8fd3423e2fea963a748f8db60693a590263683f1c9f51
https://github.com/python/cpython/pull/103608/files#diff-0f491e62a30a79c537a8fd3423e2fea963a748f8db60693a590263683f1c9f51
Misc/NEWS.d/3.8.0a1.rsthttps://github.com/python/cpython/pull/103608/files#diff-7831d00ce38a3fbb0910b02a019a98a3ca7c057f921251dea7b053b23a076432
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Misc/NEWS.d/3.8.0a1.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-7831d00ce38a3fbb0910b02a019a98a3ca7c057f921251dea7b053b23a076432
https://github.com/python/cpython/pull/103608/files#diff-7831d00ce38a3fbb0910b02a019a98a3ca7c057f921251dea7b053b23a076432
Misc/NEWS.d/3.9.0a1.rsthttps://github.com/python/cpython/pull/103608/files#diff-05cc76b435ced36885869cfc62fe3ec20fcc8522edcce2e05c9faced81b09c81
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Misc/NEWS.d/3.9.0a1.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-05cc76b435ced36885869cfc62fe3ec20fcc8522edcce2e05c9faced81b09c81
https://github.com/python/cpython/pull/103608/files#diff-05cc76b435ced36885869cfc62fe3ec20fcc8522edcce2e05c9faced81b09c81
Misc/NEWS.d/3.9.0a2.rsthttps://github.com/python/cpython/pull/103608/files#diff-811d92c0f498035165b304b3fda39502bd9fc538455f8a519d625b9615479919
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Misc/NEWS.d/3.9.0a2.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-811d92c0f498035165b304b3fda39502bd9fc538455f8a519d625b9615479919
https://github.com/python/cpython/pull/103608/files#diff-811d92c0f498035165b304b3fda39502bd9fc538455f8a519d625b9615479919
Misc/NEWS.d/3.9.0a4.rsthttps://github.com/python/cpython/pull/103608/files#diff-ff333ccd39b0ec354335a651495cf269903b87e165f7725a44724cb191703a50
View file https://github.com/rffontenelle/cpython/blob/d7a007b8e45eda5ba68243ae7cb1d90b15be1153/Misc/NEWS.d/3.9.0a4.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/103608/{{ revealButtonHref }}
https://github.com/python/cpython/pull/103608/files#diff-ff333ccd39b0ec354335a651495cf269903b87e165f7725a44724cb191703a50
https://github.com/python/cpython/pull/103608/files#diff-ff333ccd39b0ec354335a651495cf269903b87e165f7725a44724cb191703a50
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.