René's URL Explorer Experiment


Title: gh-123471: Make itertools.chain thread-safe by eendebakpt · Pull Request #135689 · python/cpython · GitHub

Open Graph Title: gh-123471: Make itertools.chain thread-safe by eendebakpt · Pull Request #135689 · python/cpython

X Title: gh-123471: Make itertools.chain thread-safe by eendebakpt · Pull Request #135689 · python/cpython

Description: The itertools.chain has two attributes that are mutated duration iteration, making it non-thread safe. Options to make it thread safe i) Use a lock (simple, but adds a performance penalty for the single-threaded case) ii) Make the iterator thread safe using atomics. For the second option we can stop clearing the lz->source on exhaustion (this is a standard mitigation to avoid setting lz->source to zero (and doing a decref) while another thread is still using lz->source). To signal the iterator that lz->source is exhausted we can either add a new attribute, or replace the while (lz->source != NULL) with while (true). This creates a slower path the the iterator is exhausted, but typically once the iterator is exhausted performance is not relevant any longer. The lz->active is more problematic. Once lz->active is exhausted, we need to update this with a new one (e.g. PyIter_Next(lz->source). But lz->active only has a single reference count. So updating in one thread means having to decref the old lz->active. Possible mitigations: a) atomically load-and-incref the lz->active in chain_next b) add a new attribute that contains all the exhausted values of lz->active and clear this once the chainobject itself is deallocated. The second option is complex and has some performance issues (e.g. more incref/decrefs, keeping references to exhausted iterators longer in memory), so in this PR we pick the first option. Issue: gh-123471

Open Graph Description: The itertools.chain has two attributes that are mutated duration iteration, making it non-thread safe. Options to make it thread safe i) Use a lock (simple, but adds a performance penalty for the s...

X Description: The itertools.chain has two attributes that are mutated duration iteration, making it non-thread safe. Options to make it thread safe i) Use a lock (simple, but adds a performance penalty for the s...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:45e08812-8f64-0d42-af3b-d83b558088f8
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idBD12:2691C1:2E2410:3E34F5:6A57FCB6
html-safe-noncee08e2505fbe320c2056ce30cc0877175cac08fd26abc0f266bd79595c6d65022
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCRDEyOjI2OTFDMToyRTI0MTA6M0UzNEY1OjZBNTdGQ0I2IiwidmlzaXRvcl9pZCI6IjYyMTQ5ODEyNTcyMjA1ODY2NzgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacc40fbb33e94f695eae3d9b732cc35bfb7560f0a42e933c1a23276e4645d7ed21
hovercard-subject-tagpull_request:2602700590
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/135689/files
twitter:imagehttps://avatars.githubusercontent.com/u/883786?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/883786?s=400&v=4
og:image:altThe itertools.chain has two attributes that are mutated duration iteration, making it non-thread safe. Options to make it thread safe i) Use a lock (simple, but adds a performance penalty for the s...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None49c8c15fabcbf356d607a90ca115c13b273e42ff8b74155de050fd229a9b0121
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
release3fb1f684e7a833eb1b2d01d39875a2b52cb4fe9b
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/pull/135689/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F135689%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%2F135689%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/135689/files
Reloadhttps://github.com/python/cpython/pull/135689/files
Reloadhttps://github.com/python/cpython/pull/135689/files
Please reload this pagehttps://github.com/python/cpython/pull/135689/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/135689/files
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 35k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 73.8k 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
kumaraditya303https://github.com/kumaraditya303
python:mainhttps://github.com/python/cpython/tree/main
eendebakpt:chain_nexthttps://github.com/eendebakpt/cpython/tree/chain_next
Conversation 9 https://github.com/python/cpython/pull/135689
Commits 6 https://github.com/python/cpython/pull/135689/commits
Checks 44 https://github.com/python/cpython/pull/135689/checks
Files changed https://github.com/python/cpython/pull/135689/files
Please reload this pagehttps://github.com/python/cpython/pull/135689/files
gh-123471: Make itertools.chain thread-safe https://github.com/python/cpython/pull/135689/files#top
Show all changes 6 commits https://github.com/python/cpython/pull/135689/files
678f29e Make itertools.chain thread-safe eendebakpt Jun 18, 2025 https://github.com/python/cpython/pull/135689/commits/678f29e5219f28c54567a5d45e13ccd053b55946
6d7c934 📜🤖 Added by blurb_it. blurb-it[bot] Jun 18, 2025 https://github.com/python/cpython/pull/135689/commits/6d7c934125831d49777ddab9f2d13e548f8c2dde
07881ac Apply suggestions from code review eendebakpt Jun 19, 2025 https://github.com/python/cpython/pull/135689/commits/07881aca9f463e0cb83122d5b946c866a0577685
e19457e Merge branch 'main' into chain_next eendebakpt Jun 19, 2025 https://github.com/python/cpython/pull/135689/commits/e19457e12af0a996fa5c002295b60b9c6a5e17db
af6ba4e review comment eendebakpt Jun 20, 2025 https://github.com/python/cpython/pull/135689/commits/af6ba4ea9e5f9e1b2c92232f563a75617f9ee7f8
6a3e402 Merge branch 'main' into chain_next eendebakpt Jun 20, 2025 https://github.com/python/cpython/pull/135689/commits/6a3e4026ea5d2e61fc11f73c43e6f494ec4a2560
Clear filters https://github.com/python/cpython/pull/135689/files
Please reload this pagehttps://github.com/python/cpython/pull/135689/files
Please reload this pagehttps://github.com/python/cpython/pull/135689/files
test_itertools.py https://github.com/python/cpython/pull/135689/files#diff-7362be533ffc13087d21c8aad53b5408e236b985fe2ea62a082f5f401883a135
2025-06-18-19-25-32.gh-issue-123471.lx1Xbt.rst https://github.com/python/cpython/pull/135689/files#diff-233609637928b1f9a2ddd9106c2f08b8e2a6ba90cffd9fa9115ca911dc0a58a7
itertoolsmodule.c https://github.com/python/cpython/pull/135689/files#diff-dc27cbdf2b9f6e5236cade13cf301d352a7abd2a8b1988f2517d6f5b7a30c201
Lib/test/test_free_threading/test_itertools.pyhttps://github.com/python/cpython/pull/135689/files#diff-7362be533ffc13087d21c8aad53b5408e236b985fe2ea62a082f5f401883a135
View file https://github.com/eendebakpt/cpython/blob/6a3e4026ea5d2e61fc11f73c43e6f494ec4a2560/Lib/test/test_free_threading/test_itertools.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/135689/{{ revealButtonHref }}
https://github.com/python/cpython/pull/135689/files#diff-7362be533ffc13087d21c8aad53b5408e236b985fe2ea62a082f5f401883a135
https://github.com/python/cpython/pull/135689/files#diff-7362be533ffc13087d21c8aad53b5408e236b985fe2ea62a082f5f401883a135
https://github.com/python/cpython/pull/135689/files#diff-7362be533ffc13087d21c8aad53b5408e236b985fe2ea62a082f5f401883a135
Misc/NEWS.d/next/Library/2025-06-18-19-25-32.gh-issue-123471.lx1Xbt.rsthttps://github.com/python/cpython/pull/135689/files#diff-233609637928b1f9a2ddd9106c2f08b8e2a6ba90cffd9fa9115ca911dc0a58a7
View file https://github.com/eendebakpt/cpython/blob/6a3e4026ea5d2e61fc11f73c43e6f494ec4a2560/Misc/NEWS.d/next/Library/2025-06-18-19-25-32.gh-issue-123471.lx1Xbt.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/135689/{{ revealButtonHref }}
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L522
Modules/itertoolsmodule.chttps://github.com/python/cpython/pull/135689/files#diff-dc27cbdf2b9f6e5236cade13cf301d352a7abd2a8b1988f2517d6f5b7a30c201
View file https://github.com/eendebakpt/cpython/blob/6a3e4026ea5d2e61fc11f73c43e6f494ec4a2560/Modules/itertoolsmodule.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/135689/{{ revealButtonHref }}
https://github.com/python/cpython/pull/135689/files#diff-dc27cbdf2b9f6e5236cade13cf301d352a7abd2a8b1988f2517d6f5b7a30c201
https://github.com/python/cpython/pull/135689/files#diff-dc27cbdf2b9f6e5236cade13cf301d352a7abd2a8b1988f2517d6f5b7a30c201
https://github.com/python/cpython/pull/135689/files#diff-dc27cbdf2b9f6e5236cade13cf301d352a7abd2a8b1988f2517d6f5b7a30c201
https://github.com/python/cpython/pull/135689/files#diff-dc27cbdf2b9f6e5236cade13cf301d352a7abd2a8b1988f2517d6f5b7a30c201
Please reload this pagehttps://github.com/python/cpython/pull/135689/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.