René's URL Explorer Experiment


Title: Isolate Stdlib Extension Modules · Issue #103092 · python/cpython · GitHub

Open Graph Title: Isolate Stdlib Extension Modules · Issue #103092 · python/cpython

X Title: Isolate Stdlib Extension Modules · Issue #103092 · python/cpython

Description: See PEP 687. Currently most stdlib extension have been ported to multi-phase init. There are still a number of them to be ported, almost entirely non-builtin modules. Also, some that have already been ported still have global state that ...

Open Graph Description: See PEP 687. Currently most stdlib extension have been ported to multi-phase init. There are still a number of them to be ported, almost entirely non-builtin modules. Also, some that have already b...

X Description: See PEP 687. Currently most stdlib extension have been ported to multi-phase init. There are still a number of them to be ported, almost entirely non-builtin modules. Also, some that have already b...

Opengraph URL: https://github.com/python/cpython/issues/103092

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Isolate Stdlib Extension Modules","articleBody":"See [PEP 687](https://peps.python.org/pep-0687/).\r\n\r\nCurrently most stdlib extension have been ported to multi-phase init.  There are still a number of them to be ported, almost entirely non-builtin modules.  Also, some that have already been ported still have global state that needs to be fixed.\r\n\r\n(This is part of the effort to finish isolating multiple interpreters from each other.  See gh-100227.)\r\n\r\n### High-Level Info\r\n\r\nHow to isolate modules: https://docs.python.org/3/howto/isolating-extensions.html (AKA PEP 630).\r\n\r\nThe full list of modules that need porting can be found with:  `...`\r\n\r\nThe full list of remaining (unsupported) global variables is:\r\n\r\n* builtin extensions: https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L308-L335\r\n* non-builtin extensions: https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L338-L551\r\n\r\nA full analysis of the modules may be found at the bottom of this post.\r\n\r\n\u003cdetails\u003e\r\n\u003csummary\u003e(other info)\u003c/summary\u003e\r\n\r\n#### Previous Work\r\n* https://github.com/python/cpython/issues/84258\r\n* _xxsubinterpreters [[issue](https://github.com/python/cpython/issues/99741)] [[PR](https://github.com/python/cpython/pull/99742)]\r\n* _testinternalcapi [[issue](https://github.com/python/cpython/issues/100997)] [[PR](https://github.com/python/cpython/pull/100998)]\r\n* ...\r\n\r\n#### Related Links\r\n\r\n* gh-85283\r\n* https://discuss.python.org/t/a-new-c-api-for-extensions-that-need-runtime-global-locks/20668\r\n* https://discuss.python.org/t/how-to-share-module-state-among-multiple-instances-of-an-extension-module/20663\r\n\r\n\u003c/details\u003e\r\n\r\n\r\n### TODO\r\n\r\nHere is the list of modules that need attention, in a *rough*, best-effort priority order.  Additional details (e.g. if there is an issue and/or PR) is found in the analysis table at the bottom.\r\n\r\n* builtins (high priority)\r\n   * [x] #101819\r\n   * [x] **isolate** _collections\r\n   * [x] #101520\r\n   * [ ] #101509\r\n* essential (higher priority)\r\n   * [x] **port** _socket\r\n   * [x] **port** readline (leave as is: only available in main interp)\r\n   * [x] **isolate** _ssl\r\n   * [x] **port** _pickle\r\n   * [x] #117398\r\n   * [x] **isolate** _asyncio\r\n   * [x] #106078 \r\n   * [x] **isolate** array\r\n   * [x] **port** _ctypes\r\n     * [x] #114314\r\n     * [x] #117142\r\n   * [x] **port** _tkinter (leave as is: only available in main interp)\r\n   * [x] #103583\r\n   * [x] #101714\r\n   * [x] **isolate** _curses_panel (leave as is: only available in main interp)\r\n   * [x] **isolate** _elementtree\r\n   * [x] **isolate** pyexpat\r\n   * [x] **port** winreg (Windows)\r\n   * [x] **port** msvcrt (Windows)\r\n* non-essential (lower priority)\r\n   * [x] **port** winsound (Windows)\r\n   * [x] **isolate** _lsprof\r\n\r\nThe above does not include test modules.  They don't need to be ported/isolated (except for a few which already have been).\r\n\r\n---------------\r\n\r\n### Modules Analysis\r\n\r\n| module | builtin | Windows | PEP 594 | issue | PR | ported | # static types | # other global objects | # other globals | \r\n| --- | :---: | :---: | :---: | --- | --- | :---: | ---: | ---: | ---: |\r\n| _asyncio |  |  |  |  |  | yes |  | [2](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L463-L464) |  |\r\n| _collections  | X |  |  | (???) | (branch) | yes | [7](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L314-L318) |  |  |\r\n| _ctypes |  |  |  |  |  | **\\*\\*NO\\*\\*** | [37](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L344-L380) | [6](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L419-L465) | [4](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L484-L530) |\r\n| _curses |  |  |  |  |  | **\\*\\*NO\\*\\*** | [1](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L381) | [2](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L420-L442) | [4](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L486-L489) |\r\n| _curses_panel |  |  |  |  |  | yes |  |  | [1](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L531) |\r\n| _datetime |  |  |  | gh-71587 | gh-102995 | **\\*\\*NO\\*\\*** | [7](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L382-L388) | [10](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L443-L452) | [1](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L483) |\r\n| _decimal |  |  |  |  |  | **\\*\\*NO\\*\\*** | [4](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L389-L392) | [10](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L411-L459) | [6](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L490-L495) |\r\n| _elementtree |  |  |  |  |  | yes |  |  | [1](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L496) |\r\n| _io | X |  |  | gh-101819 | gh-101520 | **\\*\\*NO\\*\\*** | [5](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L319-L325) |  |  |\r\n| _lsprof |  |  |  |  |  | yes |  |  | [2](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L549-L550) |\r\n| _multibytecodec |  |  |  |  |  | yes |  |  | [23](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L497-L519) |\r\n| _pickle |  |  |  | (???) | (yes) | **\\*\\*NO\\*\\*** | [5](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L382-L388) |  |  |\r\n| _socket |  |  |  |  |  | **\\*\\*NO\\*\\*** | [1](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L400) | [2](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L424-L425) | [3](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L523-L551) |\r\n| _ssl |  |  |  | (???) | (branch) | yes |  |  | [1](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L532) |\r\n| _tkinter |  |  |  |  |  | **\\*\\*NO\\*\\*** |  | [8](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L413-L469) | [9](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L533-L541) |\r\n| _tracemalloc | X |  |  | gh-101520 |  | **\\*\\*NO\\*\\*** |  | [6](https://github.com/python/cpython/blob/main/Include/internal/pycore_tracemalloc.h#L86-L104) | [7](https://github.com/python/cpython/blob/main/Include/internal/pycore_tracemalloc.h#L68-L85) |\r\n| array |  |  |  |  |  | yes |  | [1](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L460) |  |\r\n| faulthandler  | X |  |  | gh-101509 |  | yes |  | [3+](https://github.com/python/cpython/blob/main/Include/internal/pycore_faulthandler.h#L39-L79) | [~22+](https://github.com/python/cpython/blob/main/Include/internal/pycore_faulthandler.h#L38-L84) |\r\n| msvcrt |  | Y |  |  |  | **\\*\\*NO\\*\\*** | ??? | ??? | ??? |\r\n| pyexpat |  |  |  |  |  | yes |  |  | [1](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L480) |\r\n| readline |  |  |  |  |  | **\\*\\*NO\\*\\*** |  |  | [9](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L520-L548) |\r\n| winreg |  | Y |  |  |  | **\\*\\*NO\\*\\*** | ??? | ??? | ??? |\r\n| winsound |  | Y |  |  |  | **\\*\\*NO\\*\\*** | ??? | ??? | ??? |\r\n\r\n\u003cdetails\u003e\r\n\u003csummary\u003etest/example modules\u003c/summary\u003e\r\n\r\nThese can be ported/isolated but don't have to be.  They are the lowest priority.\r\n\r\n| module | issue | PR | ported | # static types | # other global objects | # other globals | \r\n| --- | --- | --- | :---: | ---: | ---: | ---: |\r\n| xxmodule |  |  |  | [3](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L401-L403) | [1](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L427) |  |\r\n| xxsubtype |  |  |  | [2](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L404-L405) |  |  |\r\n| xxlimited_35 |  |  |  |  | [2](https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L416-L426) |  |\r\n| ... |  |  |  |  |  |  |\r\n| ... |  |  |  |  |  |  |\r\n\r\n\u003c/details\u003e\r\n\r\n\r\n\u003c!-- gh-linked-prs --\u003e\r\n### Linked PRs\r\n* gh-103093\r\n* gh-102982\r\n* gh-103094\r\n* gh-103108\r\n* gh-103248\r\n* gh-103249\r\n* gh-103250\r\n* gh-103381\r\n* gh-103540\r\n* gh-103612\r\n* gh-103893\r\n* gh-103932\r\n* gh-104020\r\n* gh-104196\r\n* gh-104506\r\n* gh-104561\r\n* gh-104725\r\n* gh-113434\r\n* gh-113555\r\n* gh-113620\r\n* gh-113630\r\n* gh-113727\r\n* gh-113774\r\n* gh-113857\r\n* gh-115130\r\n* gh-115242\r\n* gh-115301\r\n* gh-23091\r\n* gh-133674\n* gh-133695\n\u003c!-- /gh-linked-prs --\u003e","author":{"url":"https://github.com/ericsnowcurrently","@type":"Person","name":"ericsnowcurrently"},"datePublished":"2023-03-28T18:25:44.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":59},"url":"https://github.com/103092/cpython/issues/103092"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:67fe9814-ba48-b492-139d-a520390e3dfe
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCF0C:4F147:C575E:10FDE9:696962EA
html-safe-noncec152488e78daa3b4fba9ab46c109b6ccfbed88a19eced3bff2f6708f205afec2
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDRjBDOjRGMTQ3OkM1NzVFOjEwRkRFOTo2OTY5NjJFQSIsInZpc2l0b3JfaWQiOiI4MjY1MjI4MjQ1NzgyODQ4MjM0IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmaccf77d42143f28314bed87e817fc3906307f0769f20db16b7d3f6d4997d42d2d8
hovercard-subject-tagissue:1644462938
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/python/cpython/103092/issue_layout
twitter:imagehttps://opengraph.githubassets.com/029b4e4847885daab986e40909e03154df7b11fb73d6e3a48dd8cc433c032295/python/cpython/issues/103092
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/029b4e4847885daab986e40909e03154df7b11fb73d6e3a48dd8cc433c032295/python/cpython/issues/103092
og:image:altSee PEP 687. Currently most stdlib extension have been ported to multi-phase init. There are still a number of them to be ported, almost entirely non-builtin modules. Also, some that have already b...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameericsnowcurrently
hostnamegithub.com
expected-hostnamegithub.com
None48487c1ad776a7975b7132d95f4240ff3ae37cd5b8e3cb597102a4edb76738f1
turbo-cache-controlno-preview
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
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release669463fcc54773a88c1f5a44eef6b99a5504b9c7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/103092#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F103092
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%2Fissues%2F103092
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%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/issues/103092
Reloadhttps://github.com/python/cpython/issues/103092
Reloadhttps://github.com/python/cpython/issues/103092
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/103092
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/issues/103092
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
New issuehttps://github.com/login?return_to=https://github.com/python/cpython/issues/103092
New issuehttps://github.com/login?return_to=https://github.com/python/cpython/issues/103092
Isolate Stdlib Extension Moduleshttps://github.com/python/cpython/issues/103092#top
extension-modulesC modules in the Modules dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22extension-modules%22
type-featureA feature request or enhancementhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-feature%22
https://github.com/ericsnowcurrently
https://github.com/ericsnowcurrently
ericsnowcurrentlyhttps://github.com/ericsnowcurrently
on Mar 28, 2023https://github.com/python/cpython/issues/103092#issue-1644462938
PEP 687https://peps.python.org/pep-0687/
gh-100227https://github.com/python/cpython/issues/100227
https://docs.python.org/3/howto/isolating-extensions.htmlhttps://docs.python.org/3/howto/isolating-extensions.html
https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L308-L335https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L308-L335
https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L338-L551https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L338-L551
Convert static types to heap types: use PyType_FromSpec() #84258https://github.com/python/cpython/issues/84258
issuehttps://github.com/python/cpython/issues/99741
PRhttps://github.com/python/cpython/pull/99742
issuehttps://github.com/python/cpython/issues/100997
PRhttps://github.com/python/cpython/pull/100998
[C API] Convert a few stdlib extensions to the limited C API (PEP 384) #85283https://github.com/python/cpython/issues/85283
https://discuss.python.org/t/a-new-c-api-for-extensions-that-need-runtime-global-locks/20668https://discuss.python.org/t/a-new-c-api-for-extensions-that-need-runtime-global-locks/20668
https://discuss.python.org/t/how-to-share-module-state-among-multiple-instances-of-an-extension-module/20663https://discuss.python.org/t/how-to-share-module-state-among-multiple-instances-of-an-extension-module/20663
Isolate the _io extension module #101819https://github.com/python/cpython/issues/101819
Isolate the tracemalloc Module Between Interpreters #101520https://github.com/python/cpython/issues/101520
Isolate the faulthandler Module Between Interpreters #101509https://github.com/python/cpython/issues/101509
Isolate the _datetime extension module #117398https://github.com/python/cpython/issues/117398
Isolate the _decimal extension module #106078https://github.com/python/cpython/issues/106078
Convert _ctypes static types (and the "meta class") to heap types #114314https://github.com/python/cpython/issues/114314
Convert _ctypes extension module to multi-phase init #117142https://github.com/python/cpython/issues/117142
Isolate _multibytecodec #103583https://github.com/python/cpython/issues/103583
Isolate the _curses extension module #101714https://github.com/python/cpython/issues/101714
2https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L463-L464
7https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L314-L318
37https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L344-L380
6https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L419-L465
4https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L484-L530
1https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L381
2https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L420-L442
4https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L486-L489
1https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L531
gh-71587https://github.com/python/cpython/issues/71587
gh-102995https://github.com/python/cpython/pull/102995
7https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L382-L388
10https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L443-L452
1https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L483
4https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L389-L392
10https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L411-L459
6https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L490-L495
1https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L496
gh-101819https://github.com/python/cpython/issues/101819
gh-101520https://github.com/python/cpython/issues/101520
5https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L319-L325
2https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L549-L550
23https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L497-L519
5https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L382-L388
1https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L400
2https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L424-L425
3https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L523-L551
1https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L532
8https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L413-L469
9https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L533-L541
gh-101520https://github.com/python/cpython/issues/101520
6https://github.com/python/cpython/blob/main/Include/internal/pycore_tracemalloc.h#L86-L104
7https://github.com/python/cpython/blob/main/Include/internal/pycore_tracemalloc.h#L68-L85
1https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L460
gh-101509https://github.com/python/cpython/issues/101509
3+https://github.com/python/cpython/blob/main/Include/internal/pycore_faulthandler.h#L39-L79
~22+https://github.com/python/cpython/blob/main/Include/internal/pycore_faulthandler.h#L38-L84
1https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L480
9https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L520-L548
3https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L401-L403
1https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L427
2https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L404-L405
2https://github.com/python/cpython/blob/main/Tools/c-analyzer/cpython/globals-to-fix.tsv#L416-L426
gh-103092: Isolate _collections #103093https://github.com/python/cpython/pull/103093
gh-103092: Isolate _pickle #102982https://github.com/python/cpython/pull/102982
gh-103092: Isolate socket #103094https://github.com/python/cpython/pull/103094
gh-103092: Isolate _tkinter (WIP) #103108https://github.com/python/cpython/pull/103108
gh-103092: Isolate msvcrt #103248https://github.com/python/cpython/pull/103248
gh-103092: Isolate winsound #103249https://github.com/python/cpython/pull/103249
gh-103092: Isolate winreg #103250https://github.com/python/cpython/pull/103250
gh-103092: Isolate _decimal #103381https://github.com/python/cpython/pull/103381
gh-103583: Add codecs and maps to _codecs_* module state #103540https://github.com/python/cpython/pull/103540
gh-103092: Isolate ctypes #103612https://github.com/python/cpython/pull/103612
gh-103092: Isolate _ctypes, part 1 #103893https://github.com/python/cpython/pull/103893
gh-103092: Adapt _ctypes's PyCStgDict type to heap type #103932https://github.com/python/cpython/pull/103932
gh-103092: Port _ctypes.COMError to heap type #104020https://github.com/python/cpython/pull/104020
GH-103092: port _asyncio freelist to module state #104196https://github.com/python/cpython/pull/104196
GH-103092: isolate pyexpat  #104506https://github.com/python/cpython/pull/104506
GH-103092: isolate _elementtree #104561https://github.com/python/cpython/pull/104561
GH-103092: isolate _ssl #104725https://github.com/python/cpython/pull/104725
gh-103092: Make _elementtree module importable in sub-interpreters #113434https://github.com/python/cpython/pull/113434
gh-103092: Make pyexpat module importable in sub-interpreters #113555https://github.com/python/cpython/pull/113555
gh-103092: Convert some _ctypes metatypes to heap types #113620https://github.com/python/cpython/pull/113620
gh-103092: Port some _ctypes data types to heap types #113630https://github.com/python/cpython/pull/113630
gh-103092: Test _ctypes type hierarchy and features #113727https://github.com/python/cpython/pull/113727
gh-103092: Port some _ctypes data types to heap types (alt) #113774https://github.com/python/cpython/pull/113774
gh-103092: Ensure _ctypes.c static types are accessed via global state #113857https://github.com/python/cpython/pull/113857
gh-103092: isolate _lsprof #115130https://github.com/python/cpython/pull/115130
gh-103092: Adapt _lsprof methods to Argument Clinic #115242https://github.com/python/cpython/pull/115242
gh-103092: Add a mutex to make the random state of rotatingtree concurrent-safe #115301https://github.com/python/cpython/pull/115301
gh-103092: Prep curses module for multi-phase init #23091https://github.com/python/cpython/pull/23091
gh-103092: Support subinterpreters in _zstd #133674https://github.com/python/cpython/pull/133674
[3.14] gh-103092: Support subinterpreters in _zstd (GH-133674) #133695https://github.com/python/cpython/pull/133695
extension-modulesC modules in the Modules dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22extension-modules%22
type-featureA feature request or enhancementhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-feature%22
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.