René's URL Explorer Experiment


Title: Crash at finalization after fail to start new thread · Issue #109746 · python/cpython · GitHub

Open Graph Title: Crash at finalization after fail to start new thread · Issue #109746 · python/cpython

X Title: Crash at finalization after fail to start new thread · Issue #109746 · python/cpython

Description: Crash report What happened? Bisected to e11fc03, but I guess this issue exists longer, and assertion that is added to PyThreadState_Clear by this commit just made it visible. import resource import threading # this isn't essential, but h...

Open Graph Description: Crash report What happened? Bisected to e11fc03, but I guess this issue exists longer, and assertion that is added to PyThreadState_Clear by this commit just made it visible. import resource import...

X Description: Crash report What happened? Bisected to e11fc03, but I guess this issue exists longer, and assertion that is added to PyThreadState_Clear by this commit just made it visible. import resource import...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Crash at finalization after fail to start new thread","articleBody":"# Crash report\n\n### What happened?\n\nBisected to e11fc032a75d067d2167a21037722a770b9dfb51, but I guess this issue exists longer, and assertion that is added to `PyThreadState_Clear` by this commit just made it visible.\n```python\nimport resource\nimport threading\n\n# this isn't essential, but helps PyThread_start_new_thread() fail\nresource.setrlimit(resource.RLIMIT_NPROC, (150, 150))\n\nwhile True:\n    t = threading.Thread()\n    t.start()\n    t.join()\n```\n\nError message with backtrace:\n```c++\nTraceback (most recent call last):\n  File \"/home/radislav/projects/cpython/thread_repro.py\", line 10, in \u003cmodule\u003e\n    t.start()\n  File \"/home/radislav/projects/cpython/Lib/threading.py\", line 978, in start\n    _start_new_thread(self._bootstrap, ())\nRuntimeError: can't start new thread\npython: Python/pystate.c:1484: PyThreadState_Clear: Assertion `tstate-\u003e_status.initialized \u0026\u0026 !tstate-\u003e_status.cleared' failed.\n\nProgram received signal SIGABRT, Aborted.\n__GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50\n50\t../sysdeps/unix/sysv/linux/raise.c: No such file or directory.\n(gdb) bt\n#0  __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50\n#1  0x00007ffff7c87537 in __GI_abort () at abort.c:79\n#2  0x00007ffff7c8740f in __assert_fail_base (fmt=0x7ffff7dfe688 \"%s%s%s:%u: %s%sAssertion `%s' failed.\\n%n\", \n    assertion=0x5555559c7be0 \"tstate-\u003e_status.initialized \u0026\u0026 !tstate-\u003e_status.cleared\", file=0x5555559c6e2f \"Python/pystate.c\", line=1484, function=\u003coptimized out\u003e)\n    at assert.c:92\n#3  0x00007ffff7c96662 in __GI___assert_fail (assertion=assertion@entry=0x5555559c7be0 \"tstate-\u003e_status.initialized \u0026\u0026 !tstate-\u003e_status.cleared\", \n    file=file@entry=0x5555559c6e2f \"Python/pystate.c\", line=line@entry=1484, function=function@entry=0x5555559c83e0 \u003c__PRETTY_FUNCTION__.47\u003e \"PyThreadState_Clear\")\n    at assert.c:101\n#4  0x000055555587075f in PyThreadState_Clear (tstate=tstate@entry=0x555555c4be00) at Python/pystate.c:1484\n#5  0x0000555555871483 in _PyThreadState_DeleteExcept (tstate=tstate@entry=0x555555c03338 \u003c_PyRuntime+508728\u003e) at Python/pystate.c:1680\n#6  0x000055555586afa4 in Py_FinalizeEx () at Python/pylifecycle.c:1831\n#7  0x000055555589f6fc in Py_RunMain () at Modules/main.c:691\n#8  0x000055555589f74b in pymain_main (args=args@entry=0x7fffffffe160) at Modules/main.c:719\n#9  0x000055555589f7c0 in Py_BytesMain (argc=\u003coptimized out\u003e, argv=\u003coptimized out\u003e) at Modules/main.c:743\n#10 0x00005555555cf74e in main (argc=\u003coptimized out\u003e, argv=\u003coptimized out\u003e) at ./Programs/python.c:15\n```\n \nWhen trying to start a new thread, Python creates new thread state by `_PyThreadState_New` call, adding this new state to list of thread states for current interpreter:\nhttps://github.com/python/cpython/blob/c32abf1f21c4bd32abcefe4d601611b152568961/Modules/_threadmodule.c#L1191\nIf consequent call to `PyThread_start_new_thread` fails, this new state gets cleared, but remains in list:\nhttps://github.com/python/cpython/blob/c32abf1f21c4bd32abcefe4d601611b152568961/Modules/_threadmodule.c#L1203-L1209\nThen, at Python finalization, call to `_PyThreadState_DeleteExcept` attempts to clear this thread state again, which causes assertion failure:\nhttps://github.com/python/cpython/blob/3e8fcb7df74248530c4280915c77e69811f69c3f/Python/pystate.c#L1674-L1682\n\ncc @ericsnowcurrently\n\n### CPython versions tested on:\n\n3.12, CPython main branch\n\n### Operating systems tested on:\n\nLinux\n\n### Output from running 'python -VV' on the command line:\n\nPython 3.13.0a0 (heads/main:d4cea794a7, Sep 22 2023, 18:42:05) [GCC 10.2.1 20210110]\n\n\u003c!-- gh-linked-prs --\u003e\n### Linked PRs\n* gh-109761\n* gh-127171\n* gh-127173\n* gh-127299\n* gh-127323\n* gh-127324\n\u003c!-- /gh-linked-prs --\u003e\n","author":{"url":"https://github.com/chgnrdv","@type":"Person","name":"chgnrdv"},"datePublished":"2023-09-22T15:48:49.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/109746/cpython/issues/109746"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:79a77896-6964-2017-b1de-312997c341a0
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idBE62:CD74F:41C6D53:5CFCB1A:6A56D072
html-safe-nonce94c696c5ad2abfdcb82bf5d25a9099ec48233e27fd5b98bc084ced109fd24a49
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCRTYyOkNENzRGOjQxQzZENTM6NUNGQ0IxQTo2QTU2RDA3MiIsInZpc2l0b3JfaWQiOiI1Mjc4MzM0MDk3ODE5MDk1MTU1IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac97b7ce3656fc1559b4e42614a2c4ddcf05db6d29f8db1b7aedadfc94eba97bea
hovercard-subject-tagissue:1909148991
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/109746/issue_layout
twitter:imagehttps://opengraph.githubassets.com/7c59e66a2a207252880bf3484834618176deb85c4109d3d8b675faf3e9fef62d/python/cpython/issues/109746
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/7c59e66a2a207252880bf3484834618176deb85c4109d3d8b675faf3e9fef62d/python/cpython/issues/109746
og:image:altCrash report What happened? Bisected to e11fc03, but I guess this issue exists longer, and assertion that is added to PyThreadState_Clear by this commit just made it visible. import resource import...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamechgnrdv
hostnamegithub.com
expected-hostnamegithub.com
Nonedf99b7164e1d961b639cf5d3cbd6b5ba673edc67bd7e47cdc4746b96099e11ae
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
release3146ab55fc8763ab0e1d2a875e600b3a545bc751
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/109746#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F109746
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%2Fissues%2F109746
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/109746
Reloadhttps://github.com/python/cpython/issues/109746
Reloadhttps://github.com/python/cpython/issues/109746
Please reload this pagehttps://github.com/python/cpython/issues/109746
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/109746
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
#109761https://github.com/python/cpython/pull/109761
Crash at finalization after fail to start new threadhttps://github.com/python/cpython/issues/109746#top
#109761https://github.com/python/cpython/pull/109761
3.12only security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.12%22
3.13bugs and security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.13%22
extension-modulesC modules in the Modules dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22extension-modules%22
interpreter-core(Objects, Python, Grammar, and Parser dirs)https://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22interpreter-core%22
type-crashA hard crash of the interpreter, possibly with a core dumphttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-crash%22
https://github.com/chgnrdv
chgnrdvhttps://github.com/chgnrdv
on Sep 22, 2023https://github.com/python/cpython/issues/109746#issue-1909148991
e11fc03https://github.com/python/cpython/commit/e11fc032a75d067d2167a21037722a770b9dfb51
cpython/Modules/_threadmodule.chttps://github.com/python/cpython/blob/c32abf1f21c4bd32abcefe4d601611b152568961/Modules/_threadmodule.c#L1191
c32abf1https://github.com/python/cpython/commit/c32abf1f21c4bd32abcefe4d601611b152568961
cpython/Modules/_threadmodule.chttps://github.com/python/cpython/blob/c32abf1f21c4bd32abcefe4d601611b152568961/Modules/_threadmodule.c#L1203-L1209
c32abf1https://github.com/python/cpython/commit/c32abf1f21c4bd32abcefe4d601611b152568961
cpython/Python/pystate.chttps://github.com/python/cpython/blob/3e8fcb7df74248530c4280915c77e69811f69c3f/Python/pystate.c#L1674-L1682
3e8fcb7https://github.com/python/cpython/commit/3e8fcb7df74248530c4280915c77e69811f69c3f
@ericsnowcurrentlyhttps://github.com/ericsnowcurrently
gh-109746: Make _thread.start_new_thread delete state of new thread on its startup failure #109761https://github.com/python/cpython/pull/109761
[3.13] gh-109746: Make _thread.start_new_thread delete state of new thread on its startup failure (GH-109761) #127171https://github.com/python/cpython/pull/127171
[3.12] gh-109746: Make _thread.start_new_thread delete state of new thread on its startup failure (GH-109761) #127173https://github.com/python/cpython/pull/127173
gh-109746: Fix race condition in test_start_new_thread_failed #127299https://github.com/python/cpython/pull/127299
[3.13] gh-109746: Fix race condition in test_start_new_thread_failed (GH-127299) #127323https://github.com/python/cpython/pull/127323
[3.12] gh-109746: Fix race condition in test_start_new_thread_failed (GH-127299) #127324https://github.com/python/cpython/pull/127324
3.12only security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.12%22
3.13bugs and security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.13%22
extension-modulesC modules in the Modules dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22extension-modules%22
interpreter-core(Objects, Python, Grammar, and Parser dirs)https://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22interpreter-core%22
type-crashA hard crash of the interpreter, possibly with a core dumphttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-crash%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.