René's URL Explorer Experiment


Title: `RemoteUnwinder.get_stack_trace` is missing exceptions on some error code paths · Issue #144316 · python/cpython · GitHub

Open Graph Title: `RemoteUnwinder.get_stack_trace` is missing exceptions on some error code paths · Issue #144316 · python/cpython

X Title: `RemoteUnwinder.get_stack_trace` is missing exceptions on some error code paths · Issue #144316 · python/cpython

Description: Bug report On a PR recently, I saw the following crash in test_external_inspection. I don't think the crash is related to the PR: Test that frame cache is per-thread and cache invalidation works independently. ... Assertion failed: (res_...

Open Graph Description: Bug report On a PR recently, I saw the following crash in test_external_inspection. I don't think the crash is related to the PR: Test that frame cache is per-thread and cache invalidation works in...

X Description: Bug report On a PR recently, I saw the following crash in test_external_inspection. I don't think the crash is related to the PR: Test that frame cache is per-thread and cache invalidation work...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"`RemoteUnwinder.get_stack_trace` is missing exceptions on some error code paths","articleBody":"# Bug report\n\nOn a [PR](https://github.com/python/cpython/actions/runs/21453460793/job/61787996150?pr=144312) recently, I saw the following crash in `test_external_inspection`. I don't think the crash is related to the PR:\n\n```\nTest that frame cache is per-thread and cache invalidation works independently. ... Assertion failed: (res_o != NULL) ^ (_PyErr_Occurred(tstate) != NULL), file C:\\a\\cpython\\cpython\\Python\\generated_cases.c.h, line 3938\nFatal Python error: Aborted\n\n\u003cCannot show all threads while the GIL is disabled\u003e\nStack (most recent call first):\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\test_external_inspection.py\", line 2702 in _get_frames_with_retry\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\test_external_inspection.py\", line 3268 in test_cache_per_thread_isolation\n  File \"C:\\a\\cpython\\cpython\\Lib\\unittest\\case.py\", line 613 in _callTestMethod\n  File \"C:\\a\\cpython\\cpython\\Lib\\unittest\\case.py\", line 667 in run\n  File \"C:\\a\\cpython\\cpython\\Lib\\unittest\\case.py\", line 723 in __call__\n  File \"C:\\a\\cpython\\cpython\\Lib\\unittest\\suite.py\", line 122 in run\n  File \"C:\\a\\cpython\\cpython\\Lib\\unittest\\suite.py\", line 84 in __call__\n  File \"C:\\a\\cpython\\cpython\\Lib\\unittest\\suite.py\", line 122 in run\n  File \"C:\\a\\cpython\\cpython\\Lib\\unittest\\suite.py\", line 84 in __call__\n  File \"C:\\a\\cpython\\cpython\\Lib\\unittest\\runner.py\", line 257 in run\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\single.py\", line 84 in _run_suite\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\single.py\", line 42 in run_unittest\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\single.py\", line 162 in test_func\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\single.py\", line 118 in regrtest_runner\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\single.py\", line 165 in _load_run_test\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\single.py\", line 210 in _runtest_env_changed_exc\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\single.py\", line 319 in _runtest\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\single.py\", line 348 in run_single_test\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\worker.py\", line 99 in worker_process\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\worker.py\", line 134 in main\n  File \"C:\\a\\cpython\\cpython\\Lib\\test\\libregrtest\\worker.py\", line 138 in \u003cmodule\u003e\n  File \"C:\\a\\cpython\\cpython\\Lib\\runpy.py\", line 87 in _run_code\n  File \"C:\\a\\cpython\\cpython\\Lib\\runpy.py\", line 196 in _run_module_as_main\n```\n\nI think that's in the call to `_remote_debugging.RemoteUnwinder.get_stack_trace`. Either it's returning NULL without an exception set or it's returning non-NULL with an exception. \n\nI asked Claude to find the missing exceptions and it came up with the following:\n\n```\n  Missing Exception Error Paths\n\n  1. asyncio.c:119-122 - Set object validation\n  if (mask \u003c 0 || mask \u003e= MAX_SET_TABLE_SIZE || num_els \u003c 0 || num_els \u003e mask + 1) {\n      set_exception_cause(unwinder, PyExc_RuntimeError,\n          \"Invalid set object (corrupted remote memory)\");\n      return -1;\n  }\n  2. object_reading.c:198-201 - PyLong size validation\n  if (size \u003c 0 || size \u003e MAX_LONG_DIGITS) {\n      set_exception_cause(unwinder, PyExc_RuntimeError,\n          \"Invalid PyLong size (corrupted remote memory)\");\n      return -1;\n  }\n  3. frames.c:50-54 - Stack chunk size validation\n  if (actual_size \u003c= offsetof(_PyStackChunk, data) || actual_size \u003e MAX_STACK_CHUNK_SIZE) {\n      PyMem_RawFree(this_chunk);\n      set_exception_cause(unwinder, PyExc_RuntimeError,\n          \"Invalid stack chunk size (corrupted remote memory)\");\n      return -1;\n  }\n  4. code_objects.c:448-451 - TLBC index validation\n  if (ctx-\u003etlbc_index \u003c 0 || ctx-\u003etlbc_index \u003e= tlbc_entry-\u003etlbc_array_size) {\n      set_exception_cause(unwinder, PyExc_RuntimeError,\n          \"Invalid tlbc_index (corrupted remote memory)\");\n      goto error;\n  }\n  5. module.c:596-601 - Thread list cycle detection\n  if (current_tstate == prev_tstate) {\n      Py_DECREF(interpreter_threads);\n      set_exception_cause(self, PyExc_RuntimeError,\n          \"Thread list cycle detected (corrupted remote memory)\");\n      Py_CLEAR(result);\n      goto exit;\n  }\n```\n\nThe `set_exception_cause` macro only sets an exception if `unwinder-\u003edebug` is set.\n\ncc @pablogsal \n\n\u003c!-- gh-linked-prs --\u003e\n### Linked PRs\n* gh-144442\n* gh-145280\n\u003c!-- /gh-linked-prs --\u003e\n","author":{"url":"https://github.com/colesbury","@type":"Person","name":"colesbury"},"datePublished":"2026-01-28T22:21:15.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/144316/cpython/issues/144316"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:c4247623-99cf-c49f-1ab2-057d2403d963
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idDDDC:20853D:84D05BA:B94C7A8:6A500FCD
html-safe-noncea78fe68e567e0817d4b942ff55cffaf7ff814044103a9b82b0cd32882c36845d
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJERERDOjIwODUzRDo4NEQwNUJBOkI5NEM3QTg6NkE1MDBGQ0QiLCJ2aXNpdG9yX2lkIjoiNTQwNjk3MjY1Nzg3ODk5ODUzIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacb73b5826ad52227c3680cf9997bf8ae36f5c5e09f596bb03af30ca04de702971
hovercard-subject-tagissue:3867700108
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/144316/issue_layout
twitter:imagehttps://opengraph.githubassets.com/61546ccc586dc60dc1a229978a85bdd038da166affc907d8ed435e2066558584/python/cpython/issues/144316
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/61546ccc586dc60dc1a229978a85bdd038da166affc907d8ed435e2066558584/python/cpython/issues/144316
og:image:altBug report On a PR recently, I saw the following crash in test_external_inspection. I don't think the crash is related to the PR: Test that frame cache is per-thread and cache invalidation works in...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamecolesbury
hostnamegithub.com
expected-hostnamegithub.com
Nonefe4f38b24922a1ce81c1708c3793b47c185599b9144ab94f6ca846b00698058d
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
release42b6390c91978a16f9196c38c7a00e9bf21f37e7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/144316#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F144316
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%2F144316
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/144316
Reloadhttps://github.com/python/cpython/issues/144316
Reloadhttps://github.com/python/cpython/issues/144316
Please reload this pagehttps://github.com/python/cpython/issues/144316
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/144316
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
RemoteUnwinder.get_stack_trace is missing exceptions on some error code pathshttps://github.com/python/cpython/issues/144316#top
extension-modulesC modules in the Modules dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22extension-modules%22
topic-profilinghttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22topic-profiling%22
type-bugAn unexpected behavior, bug, or errorhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-bug%22
https://github.com/colesbury
colesburyhttps://github.com/colesbury
on Jan 28, 2026https://github.com/python/cpython/issues/144316#issue-3867700108
PRhttps://github.com/python/cpython/actions/runs/21453460793/job/61787996150?pr=144312
@pablogsalhttps://github.com/pablogsal
gh-144316: Fix missing exception in _remote_debugging with debug=False #144442https://github.com/python/cpython/pull/144442
[3.14] gh-144316: Fix missing exception in _remote_debugging with debug=False (GH-144442) #145280https://github.com/python/cpython/pull/145280
extension-modulesC modules in the Modules dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22extension-modules%22
topic-profilinghttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22topic-profiling%22
type-bugAn unexpected behavior, bug, or errorhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-bug%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.