René's URL Explorer Experiment


Title: [3.8] bpo-39959: Do not use resource_tracker for shared_memory by rauanargyn · Pull Request #20136 · python/cpython · GitHub

Open Graph Title: [3.8] bpo-39959: Do not use resource_tracker for shared_memory by rauanargyn · Pull Request #20136 · python/cpython

X Title: [3.8] bpo-39959: Do not use resource_tracker for shared_memory by rauanargyn · Pull Request #20136 · python/cpython

Description: This PR aims to fix the issue with "multiprocessing.shared_memory.SharedMemory" class registering open shared memory with resource_tracker, causing shared memory clean up after any of the connecting processes exit. The idea is not to use the resource_tracker at all and let the user be responsible for shared memory clean up. This allows shared memory to persist even if either the creating or any other reading processes have long exited. https://bugs.python.org/issue39959 shm.py from multiprocessing import shared_memory import struct import sys def connect_shm(name): shm_r = shared_memory.SharedMemory(name) print("Attached to shared memory") print(struct.unpack("i", bytes(shm_r.buf[0:4]))) shm_r.close() def create_shm(name, spin=False): shm_c = shared_memory.SharedMemory(name=name, create=True, size=4096*5) print("Created shared memory") buf = shm_c.buf buf[0:4] = struct.pack("i", 4096) shm_c.close() if __name__ == "__main__": mode = sys.argv[1] name = "test" if mode == "-create": create_shm(name, True) elif mode == "-attach": connect_shm(name) python3.8 shm.py -create python3.7 shm.py -attach Before this change resource_tracker.py:216: UserWarning: resource_tracker: There appear to be 1 leaked shared_memory objects to clean up at shutdown After this change Created shared memory Attached to shared memory (4096,) https://bugs.python.org/issue39959

Open Graph Description: This PR aims to fix the issue with "multiprocessing.shared_memory.SharedMemory" class registering open shared memory with resource_tracker, causing shared memory clean up after any of the...

X Description: This PR aims to fix the issue with "multiprocessing.shared_memory.SharedMemory" class registering open shared memory with resource_tracker, causing shared memory clean up after an...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:ac602459-9727-dea3-e13d-1f23a9cf1f13
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idE7A4:347197:64FE6E:8A6FFE:6A55A3BE
html-safe-nonceeae3664b23b48ca97394d237ef6f8eee1cdd5a380e51fd23b63da5152013f2a2
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFN0E0OjM0NzE5Nzo2NEZFNkU6OEE2RkZFOjZBNTVBM0JFIiwidmlzaXRvcl9pZCI6IjQ2NjU5MTMwMzA2MjYyNzI2MiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac7c0af9d2919c1cc1a045956a0a4098ecd0c51e0f30c2618af3fc84a5b99e10bc
hovercard-subject-tagpull_request:419024171
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/20136/files
twitter:imagehttps://avatars.githubusercontent.com/u/3682260?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/3682260?s=400&v=4
og:image:altThis PR aims to fix the issue with "multiprocessing.shared_memory.SharedMemory" class registering open shared memory with resource_tracker, causing shared memory clean up after any of the...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noneb5665c84831ed9ac4fb79519c16c9c5580ba8092fb8bb6e3e72972ec7197348e
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
release653fccf1e27344851c0d3de3fa6faa526197f072
ui-targetcanary-1
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/pull/20136/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F20136%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%2F20136%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/20136/files
Reloadhttps://github.com/python/cpython/pull/20136/files
Reloadhttps://github.com/python/cpython/pull/20136/files
Please reload this pagehttps://github.com/python/cpython/pull/20136/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/20136/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
rauanargynhttps://github.com/rauanargyn
python:3.8https://github.com/python/cpython/tree/3.8
rauanargyn:fix-issues-39959https://github.com/rauanargyn/cpython/tree/fix-issues-39959
Conversation 2 https://github.com/python/cpython/pull/20136
Commits 2 https://github.com/python/cpython/pull/20136/commits
Checks 0 https://github.com/python/cpython/pull/20136/checks
Files changed https://github.com/python/cpython/pull/20136/files
Please reload this pagehttps://github.com/python/cpython/pull/20136/files
[3.8] bpo-39959: Do not use resource_tracker for shared_memory https://github.com/python/cpython/pull/20136/files#top
Show all changes 2 commits https://github.com/python/cpython/pull/20136/files
6a8dfb3 bpo-39959: Do not use resource_tracker for shared_memory rauanargyn May 16, 2020 https://github.com/python/cpython/pull/20136/commits/6a8dfb3c1ff38dc153633396786485bceaa50976
d44b122 📜🤖 Added by blurb_it. blurb-it[bot] May 16, 2020 https://github.com/python/cpython/pull/20136/commits/d44b122540437b1aac8f6db1af25bb9c4bc3a47a
Clear filters https://github.com/python/cpython/pull/20136/files
Please reload this pagehttps://github.com/python/cpython/pull/20136/files
Please reload this pagehttps://github.com/python/cpython/pull/20136/files
shared_memory.py https://github.com/python/cpython/pull/20136/files#diff-79663aed87ea0a8bbe1009dd0438f8526282b5ecfc3b6eec4757bcd79b76531b
2020-05-16-21-31-41.bpo-39959.1TTyew.rst https://github.com/python/cpython/pull/20136/files#diff-4ddc349595d6e28abd4a1615c665792431567c6c35545b9a8b33a6329be72fbc
https://github.com/python/cpython/blob/3.8/.github/CODEOWNERS#L19
Lib/multiprocessing/shared_memory.pyhttps://github.com/python/cpython/pull/20136/files#diff-79663aed87ea0a8bbe1009dd0438f8526282b5ecfc3b6eec4757bcd79b76531b
View file https://github.com/rauanargyn/cpython/blob/d44b122540437b1aac8f6db1af25bb9c4bc3a47a/Lib/multiprocessing/shared_memory.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/20136/{{ revealButtonHref }}
https://github.com/python/cpython/pull/20136/files#diff-79663aed87ea0a8bbe1009dd0438f8526282b5ecfc3b6eec4757bcd79b76531b
https://github.com/python/cpython/pull/20136/files#diff-79663aed87ea0a8bbe1009dd0438f8526282b5ecfc3b6eec4757bcd79b76531b
https://github.com/python/cpython/pull/20136/files#diff-79663aed87ea0a8bbe1009dd0438f8526282b5ecfc3b6eec4757bcd79b76531b
https://github.com/python/cpython/pull/20136/files#diff-79663aed87ea0a8bbe1009dd0438f8526282b5ecfc3b6eec4757bcd79b76531b
Misc/NEWS.d/next/Library/2020-05-16-21-31-41.bpo-39959.1TTyew.rsthttps://github.com/python/cpython/pull/20136/files#diff-4ddc349595d6e28abd4a1615c665792431567c6c35545b9a8b33a6329be72fbc
View file https://github.com/rauanargyn/cpython/blob/d44b122540437b1aac8f6db1af25bb9c4bc3a47a/Misc/NEWS.d/next/Library/2020-05-16-21-31-41.bpo-39959.1TTyew.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/20136/{{ revealButtonHref }}
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.