René's URL Explorer Experiment


Title: gh-150107: adding hasattr check on offset to include if available by grantlouisherman · Pull Request #150142 · python/cpython · GitHub

Open Graph Title: gh-150107: adding hasattr check on offset to include if available by grantlouisherman · Pull Request #150142 · python/cpython

X Title: gh-150107: adding hasattr check on offset to include if available by grantlouisherman · Pull Request #150142 · python/cpython

Description: Original Bug Report: Bug report Bug description: BaseEventLoop._sock_sendfile_fallback (https://github.com/python/cpython/blob/main/Lib/asyncio/base_events.py#L971) erroneously doesn't seek when passed the offset 0. if offset: file.seek(offset) This check in the function doesn't call file.seek if offset is falsey. If the file in question has a file pointer that is not currently at the 0 offset then this will erroneously send from the current offset and not the start of the file as desired. This can happen when sendfile is called with the destination socket is an SSL socket. Repro code (generated by Claude), because of needing to create an SSL socket it's a bit involved - including making a self signed cert with the openssl command. import asyncio import os import ssl import subprocess import sys import tempfile from pathlib import Path CONTENT = b"X" * 1000 def make_throwaway_cert(tmp: Path) -> tuple[Path, Path]: cert = tmp / "cert.pem" key = tmp / "key.pem" subprocess.run( [ "openssl", "req", "-x509", "-newkey", "rsa:2048", "-nodes", "-keyout", str(key), "-out", str(cert), "-days", "1", "-subj", "/CN=localhost", ], check=True, capture_output=True, ) return cert, key async def main() -> int: with tempfile.TemporaryDirectory() as tmp_: tmp = Path(tmp_) cert, key = make_throwaway_cert(tmp) data_path = tmp / "data" data_path.write_bytes(CONTENT) # SSL server that drains whatever it receives. server_ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER) server_ctx.load_cert_chain(cert, key) received = 0 done = asyncio.Event() async def handle(reader: asyncio.StreamReader, writer: asyncio.StreamWriter) -> None: nonlocal received try: while chunk := await reader.read(4096): received += len(chunk) finally: writer.close() done.set() server = await asyncio.start_server(handle, "127.0.0.1", 0, ssl=server_ctx) port = server.sockets[0].getsockname()[1] # SSL client → transport's `_sendfile_compatible == UNSUPPORTED` → fallback path. client_ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) client_ctx.check_hostname = False client_ctx.verify_mode = ssl.CERT_NONE _, writer = await asyncio.open_connection( "127.0.0.1", port, ssl=client_ctx, server_hostname="localhost" ) # Open the file and pre-advance its position. In the real-world bug # this happens because the calling code previously read through the # same fh (e.g. to parse an HTTP header). f = open(data_path, "rb", buffering=0) f.seek(len(CONTENT)) # file position is at EOF # Send from offset=0. Expectation: 1000 bytes transferred. loop = asyncio.get_running_loop() sent = await loop.sendfile(writer.transport, f, offset=0) writer.close() await writer.wait_closed() await done.wait() server.close() await server.wait_closed() f.close() print(f"Python: {sys.version}") print(f"file size: {len(CONTENT)}") print(f"file.tell() before sendfile: {len(CONTENT)} (EOF)") print(f"loop.sendfile(..., offset=0) returned: {sent}") print(f"server received: {received} bytes") print() if sent == 0 and received == 0: print("BUG REPRODUCED: offset=0 was ignored; the fallback read from " "file.tell() instead of from the requested offset.") return 1 else: print("Bug NOT reproduced on this Python build.") return 0 sys.exit(asyncio.run(main())) The relevant lines are the line f.seek(len(CONTENT)) and the line sent = await loop.sendfile(writer.transport, f, offset=0). Most of the rest is setup and teardown. CPython versions tested on: 3.12, 3.13 Operating systems tested on: Linux Fix I think what I did was correct or understood the issue, but essentially as far as I could understand 0 is always falsey so if offset was ever set to zero than the file.seek wasent happening even though 0 offset is a legitimate offset. I simply just did an instance on offset to make sure it is an int and then the f.seek goes through. I validated with the repro command and passing unit tests. Issue: gh-150107

Open Graph Description: Original Bug Report: Bug report Bug description: BaseEventLoop._sock_sendfile_fallback (https://github.com/python/cpython/blob/main/Lib/asyncio/base_events.py#L971) erroneously doesn't seek whe...

X Description: Original Bug Report: Bug report Bug description: BaseEventLoop._sock_sendfile_fallback (https://github.com/python/cpython/blob/main/Lib/asyncio/base_events.py#L971) erroneously doesn't seek...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:3f6757ff-a429-5de9-2e44-00c2373d47e5
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idD450:53234:60250C2:86F1B0E:6A5011D0
html-safe-nonce18ddf6ddd47ec135687a8f62c92965b195dc323c9ec7299c55a6cb787f14e562
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJENDUwOjUzMjM0OjYwMjUwQzI6ODZGMUIwRTo2QTUwMTFEMCIsInZpc2l0b3JfaWQiOiI4MzI3NjAxMzc1Nzc4MTgxNTg0IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac051f9c0a0d6ef8ff152e96fabdad82901db89760e511ecdc680f56d5ba5c3c49
hovercard-subject-tagpull_request:3713718452
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/150142/files
twitter:imagehttps://avatars.githubusercontent.com/u/5606705?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/5606705?s=400&v=4
og:image:altOriginal Bug Report: Bug report Bug description: BaseEventLoop._sock_sendfile_fallback (https://github.com/python/cpython/blob/main/Lib/asyncio/base_events.py#L971) erroneously doesn't seek whe...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonefe4f38b24922a1ce81c1708c3793b47c185599b9144ab94f6ca846b00698058d
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
release42b6390c91978a16f9196c38c7a00e9bf21f37e7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/pull/150142/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F150142%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
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
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
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/enterprise/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%2F150142%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/150142/files
Reloadhttps://github.com/python/cpython/pull/150142/files
Reloadhttps://github.com/python/cpython/pull/150142/files
Please reload this pagehttps://github.com/python/cpython/pull/150142/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/150142/files
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 34.9k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 73.6k 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.3k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality 0 https://github.com/python/cpython/security
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 and quality 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
grantlouishermanhttps://github.com/grantlouisherman
python:mainhttps://github.com/python/cpython/tree/main
grantlouisherman:bugfix-150107-asyncio-ignore-0-offsethttps://github.com/grantlouisherman/cpython/tree/bugfix-150107-asyncio-ignore-0-offset
Conversation 21 https://github.com/python/cpython/pull/150142
Commits 26 https://github.com/python/cpython/pull/150142/commits
Checks 48 https://github.com/python/cpython/pull/150142/checks
Files changed https://github.com/python/cpython/pull/150142/files
Please reload this pagehttps://github.com/python/cpython/pull/150142/files
gh-150107: adding hasattr check on offset to include if available https://github.com/python/cpython/pull/150142/files#top
Show all changes 26 commits https://github.com/python/cpython/pull/150142/files
a8f0c9c bugfix(150107): adding isinstance check on offset to include if avail… grantlouisherman May 20, 2026 https://github.com/python/cpython/pull/150142/commits/a8f0c9c995af33d746fa8b33df44e92b055219cd
7e7cba2 Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 20, 2026 https://github.com/python/cpython/pull/150142/commits/7e7cba25568821cc0abcb33180dc942ba67feaae
4a05d1a Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 20, 2026 https://github.com/python/cpython/pull/150142/commits/4a05d1a4c2a1f1da9282de2684a3d47c60612855
6b5e93c Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/6b5e93cba921f1fc2b06481d2bec346068c89dc8
d2a9ce0 📜🤖 Added by blurb_it. blurb-it[bot] May 21, 2026 https://github.com/python/cpython/pull/150142/commits/d2a9ce0dd026e53635dfc28aaf0a74c987574848
a11d3b3 Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/a11d3b34ed3da484f1727a38739b711a673b2ef9
4587db4 Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/4587db4962112e88f49b0277b777996eb10ed40a
b525cb2 addressing PR comments grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/b525cb2c9b6cb75e567bfad905dea820f04c447f
f247be0 addressing PR comments grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/f247be00a639854a599d2465c198fd05af9fe52e
84cdc6c fixing lints grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/84cdc6c41fffb7e9382ecc71a0d728b8ef3fffed
25ab08e Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/25ab08ebfb736bfc6863e8e7212ade2b64490554
801932f adding unit test grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/801932f11e159b1dca6291c3dafceb980516114c
0679bcb Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/0679bcba63711ae047c62c03c42ca3497d0f541b
800a2d5 fixing test failures and lint errors grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/800a2d51a995e9c2fe2a0ea66984720845abd7b9
2af3015 fixing windows tests grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/2af301529773c7d782b88a4c901c006bd49dd774
027dec5 Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/027dec56eaca0336735a5b4129e55fbda3728e0d
79857ff Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 21, 2026 https://github.com/python/cpython/pull/150142/commits/79857ffbc416406a4ba0cae8d19e6980a64c17bb
ded4a36 Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 22, 2026 https://github.com/python/cpython/pull/150142/commits/ded4a363c603f887d0e61ba877e783921a7fa9a3
aaa1a2d gh-149995: Update typing.py docstrings and documentation (#149996) JelleZijlstra May 22, 2026 https://github.com/python/cpython/pull/150142/commits/aaa1a2ddef44d4dfe3e3b12334c08b2625d1217a
6b3c418 gh-133998: Fix gzip file creation when time is out of range (GH-134278) adang1345 May 22, 2026 https://github.com/python/cpython/pull/150142/commits/6b3c418b4c504729cc7cef9188a18fdad7727c68
0f84205 gh-137571: Protect against possible UnboundLocalError in gzip._GzipRe… serhiy-storchaka May 22, 2026 https://github.com/python/cpython/pull/150142/commits/0f8420523e913f0af1a959e9ae6b4170a6947bf9
68a2765 gh-149902: Remove dead packaging docs link and add a new section for … miameows May 22, 2026 https://github.com/python/cpython/pull/150142/commits/68a27652debc7fb2a3bcf60741ca92142cfc071e
344f35d gh-91372: Add mtime to gzip.open() (GH-32310) ellaellela May 22, 2026 https://github.com/python/cpython/pull/150142/commits/344f35d404408e115212bf834aa15443fe7ae693
403322e gh-149879: Fix test_c_locale_coercion on Cygwin (#150250) vstinner May 22, 2026 https://github.com/python/cpython/pull/150142/commits/403322e15165d9ae294ec035aa7813a332d99abc
7b50ffc Remove 'expat' dependency for Linux in `Misc/Brewfile` (#150118) brettcannon May 22, 2026 https://github.com/python/cpython/pull/150142/commits/7b50ffcaabe83f0936f96012c390fb37cf8b71f2
9593f8b Merge branch 'main' into bugfix-150107-asyncio-ignore-0-offset grantlouisherman May 22, 2026 https://github.com/python/cpython/pull/150142/commits/9593f8b2be5c8235ec55573bf71e4897f082d6fd
Clear filters https://github.com/python/cpython/pull/150142/files
Please reload this pagehttps://github.com/python/cpython/pull/150142/files
Please reload this pagehttps://github.com/python/cpython/pull/150142/files
base_events.py https://github.com/python/cpython/pull/150142/files#diff-7962e1627bc1bfbce13bef0be78d5ef7fc962f99bbc524a199ef489852ca1344
windows_events.py https://github.com/python/cpython/pull/150142/files#diff-4d950142ac4382096cb08d3d7f9b377ff8208085ce5d5f76ad0d0dadc7a77205
test_sendfile.py https://github.com/python/cpython/pull/150142/files#diff-711b6f68342493b9a0f3fc828d2e8383be9996bd8c2513e807d11b5bdbb84a8f
2026-05-21-14-17-29.gh-issue-150107.hwPKW6.rst https://github.com/python/cpython/pull/150142/files#diff-2b9b4244d985678f03c3973f0c8edd6e22f5ff960e2ff96ea62ac73b09896b59
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L379
Lib/asyncio/base_events.pyhttps://github.com/python/cpython/pull/150142/files#diff-7962e1627bc1bfbce13bef0be78d5ef7fc962f99bbc524a199ef489852ca1344
View file https://github.com/grantlouisherman/cpython/blob/9593f8b2be5c8235ec55573bf71e4897f082d6fd/Lib/asyncio/base_events.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/150142/{{ revealButtonHref }}
https://github.com/python/cpython/pull/150142/files#diff-7962e1627bc1bfbce13bef0be78d5ef7fc962f99bbc524a199ef489852ca1344
Please reload this pagehttps://github.com/python/cpython/pull/150142/files
https://github.com/python/cpython/pull/150142/files#diff-7962e1627bc1bfbce13bef0be78d5ef7fc962f99bbc524a199ef489852ca1344
https://github.com/python/cpython/pull/150142/files#diff-7962e1627bc1bfbce13bef0be78d5ef7fc962f99bbc524a199ef489852ca1344
https://github.com/python/cpython/pull/150142/files#diff-7962e1627bc1bfbce13bef0be78d5ef7fc962f99bbc524a199ef489852ca1344
https://github.com/python/cpython/pull/150142/files#diff-7962e1627bc1bfbce13bef0be78d5ef7fc962f99bbc524a199ef489852ca1344
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L379
Lib/asyncio/windows_events.pyhttps://github.com/python/cpython/pull/150142/files#diff-4d950142ac4382096cb08d3d7f9b377ff8208085ce5d5f76ad0d0dadc7a77205
View file https://github.com/grantlouisherman/cpython/blob/9593f8b2be5c8235ec55573bf71e4897f082d6fd/Lib/asyncio/windows_events.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/150142/{{ revealButtonHref }}
https://github.com/python/cpython/pull/150142/files#diff-4d950142ac4382096cb08d3d7f9b377ff8208085ce5d5f76ad0d0dadc7a77205
grantlouishermanhttps://github.com/grantlouisherman
May 21, 2026https://github.com/python/cpython/pull/150142/files#r3284131144
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
@vstinnerhttps://github.com/vstinner
#112337https://github.com/python/cpython/pull/112337
Please reload this pagehttps://github.com/python/cpython/pull/150142/files
https://github.com/python/cpython/pull/150142/files#diff-4d950142ac4382096cb08d3d7f9b377ff8208085ce5d5f76ad0d0dadc7a77205
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L380
Lib/test/test_asyncio/test_sendfile.pyhttps://github.com/python/cpython/pull/150142/files#diff-711b6f68342493b9a0f3fc828d2e8383be9996bd8c2513e807d11b5bdbb84a8f
View file https://github.com/grantlouisherman/cpython/blob/9593f8b2be5c8235ec55573bf71e4897f082d6fd/Lib/test/test_asyncio/test_sendfile.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/150142/{{ revealButtonHref }}
https://github.com/python/cpython/pull/150142/files#diff-711b6f68342493b9a0f3fc828d2e8383be9996bd8c2513e807d11b5bdbb84a8f
Please reload this pagehttps://github.com/python/cpython/pull/150142/files
Please reload this pagehttps://github.com/python/cpython/pull/150142/files
https://github.com/python/cpython/pull/150142/files#diff-711b6f68342493b9a0f3fc828d2e8383be9996bd8c2513e807d11b5bdbb84a8f
Misc/NEWS.d/next/Core_and_Builtins/2026-05-21-14-17-29.gh-issue-150107.hwPKW6.rsthttps://github.com/python/cpython/pull/150142/files#diff-2b9b4244d985678f03c3973f0c8edd6e22f5ff960e2ff96ea62ac73b09896b59
View file https://github.com/grantlouisherman/cpython/blob/9593f8b2be5c8235ec55573bf71e4897f082d6fd/Misc/NEWS.d/next/Core_and_Builtins/2026-05-21-14-17-29.gh-issue-150107.hwPKW6.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/150142/{{ revealButtonHref }}
Please reload this pagehttps://github.com/python/cpython/pull/150142/files
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.