René's URL Explorer Experiment


Title: Take `&Py` instead of `PyTypeRef` in `vm.invoke_exception()` · Issue #8320 · RustPython/RustPython · GitHub

Open Graph Title: Take `&Py` instead of `PyTypeRef` in `vm.invoke_exception()` · Issue #8320 · RustPython/RustPython

X Title: Take `&Py` instead of `PyTypeRef` in `vm.invoke_exception()` · Issue #8320 · RustPython/RustPython

Description: Summary VirtualMachine::invoke_exception currently takes its class argument by owned value: // crates/vm/src/exceptions.rs pub fn invoke_exception( &self, cls: PyTypeRef, // PyRef args: Vec, ) -> PyResult

Open Graph Description: Summary VirtualMachine::invoke_exception currently takes its class argument by owned value: // crates/vm/src/exceptions.rs pub fn invoke_exception( &self, cls: PyTypeRef, // PyRef args: Vec...

X Description: Summary VirtualMachine::invoke_exception currently takes its class argument by owned value: // crates/vm/src/exceptions.rs pub fn invoke_exception( &self, cls: PyTypeRef, // PyRef<PyType>...

Opengraph URL: https://github.com/RustPython/RustPython/issues/8320

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Take `\u0026Py\u003cPyType\u003e` instead of `PyTypeRef` in `vm.invoke_exception()`","articleBody":"## Summary\n\n`VirtualMachine::invoke_exception` currently takes its class argument by owned value:\n\n```rust\n// crates/vm/src/exceptions.rs\npub fn invoke_exception(\n    \u0026self,\n    cls: PyTypeRef,          // PyRef\u003cPyType\u003e\n    args: Vec\u003cPyObjectRef\u003e,\n) -\u003e PyResult\u003cPyBaseExceptionRef\u003e {\n    let res = PyType::call(\u0026cls, args.into_args(self), self)?;\n    res.downcast::\u003cPyBaseException\u003e().map_err(|obj| {\n        self.new_type_error(format!(\n            \"calling {} should have returned an instance of BaseException, not {}\",\n            cls,\n            obj.class()\n        ))\n    })\n}\n```\n\nIt should take a borrow instead:\n\n```rust\npub fn invoke_exception(\n    \u0026self,\n    cls: \u0026Py\u003cPyType\u003e,\n    args: Vec\u003cPyObjectRef\u003e,\n) -\u003e PyResult\u003cPyBaseExceptionRef\u003e { ... }\n```\n\n## Why the change is justified\n\n**1. `invoke_exception` never takes ownership of `cls`.**\nThe body only ever *borrows* it:\n- `PyType::call(\u0026cls, ...)` — `PyType::call` is defined as `fn call(zelf: \u0026Py\u003cSelf\u003e, ...)`, i.e. it already takes a borrow.\n- `cls` in the `new_type_error` format string is used via `Display`, by reference.\n\nThere is no point where `cls` is moved, stored, or otherwise consumed. The owned `PyTypeRef` parameter is therefore strictly stronger than what the function needs. `PyTypeRef` (`= PyRef\u003cPyType\u003e`) derefs to `Py\u003cPyType\u003e`, so `\u0026Py\u003cPyType\u003e` is the exact borrowed form.\n\n**2. The owned parameter forces needless refcount churn at call sites.**\nBecause the signature demands ownership, most callers only holding a borrow must `.to_owned()` — an atomic refcount increment (and later decrement) — purely to satisfy the type, even though the reference is dropped immediately after the call returns:\n\n| Call site | Current argument |\n|-----------|------------------|\n| `crates/vm/src/stdlib/_io.rs:945` | `vm.ctx.exceptions.blocking_io_error.to_owned()` |\n| `crates/vm/src/stdlib/_io.rs:1156` | `vm.ctx.exceptions.blocking_io_error.to_owned()` |\n| `crates/vm/src/stdlib/_io.rs:1202` | `vm.ctx.exceptions.blocking_io_error.to_owned()` |\n| `crates/vm/src/stdlib/sys.rs:779` | `vm.ctx.exceptions.system_exit.to_owned()` |\n| `crates/vm/src/exception_group.rs:74` | `vm.ctx.exceptions.base_exception_group.to_owned()` |\n| `crates/vm/src/exceptions.rs:2010` | `typ.to_owned()` |\n| `crates/capi/src/pyerrors.rs:152` | `exc_type.to_owned()` |\n\nWith `\u0026Py\u003cPyType\u003e` every one of these drops the `.to_owned()` and passes the borrow directly.\n\n**3. It matches the idiomatic borrow used elsewhere.**\n`\u0026Py\u003cT\u003e` is the conventional \"borrowed typed object\" throughout the VM, and specifically the method `invoke_exception` delegates to — `PyType::call(zelf: \u0026Py\u003cSelf\u003e, ...)` — already takes exactly that. The change makes the helper consistent with what it wraps.\n\n**4. Callers that legitimately own a `PyTypeRef` are unaffected in cost.**\n`ExceptionCtor::instantiate` / `instantiate_value` (`crates/vm/src/exceptions.rs:447` and `:475`) own their `cls` via the `self` match; they just pass `\u0026cls` instead of moving it — a trivial edit and no clone either way.\n\n## Proposed change\n\n- Change the parameter to `cls: \u0026Py\u003cPyType\u003e`.\n- Update the ~9 call sites: drop `.to_owned()` where a borrow is already in hand, and pass `\u0026cls` from the `ExceptionCtor` sites.\n\nNo behavior change; this is a pure API/ergonomics cleanup that removes several unnecessary refcount bumps.","author":{"url":"https://github.com/youknowone","@type":"Person","name":"youknowone"},"datePublished":"2026-07-19T04:48:13.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/8320/RustPython/issues/8320"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:9d295278-6a1f-687a-fc63-97873e3471e7
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCF78:5CA28:1172FB:17929F:6A5FE824
html-safe-nonceb512857b306586213613e8a1aac64422f2db5868eca77f08336da4ce300f663b
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDRjc4OjVDQTI4OjExNzJGQjoxNzkyOUY6NkE1RkU4MjQiLCJ2aXNpdG9yX2lkIjoiNTQ2NTI4NzQwMTM3NTAwMDYxMyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmace9b98fb760b6dca87b58976a4a46b2cb7ba1f9add4e1eeb33e288d5b44d58c49
hovercard-subject-tagissue:4921354533
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/RustPython/RustPython/8320/issue_layout
twitter:imagehttps://opengraph.githubassets.com/9db3b7b8b015f6008ab1128cd46f8c14c936384e66c10a85ad055c3651d81703/RustPython/RustPython/issues/8320
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/9db3b7b8b015f6008ab1128cd46f8c14c936384e66c10a85ad055c3651d81703/RustPython/RustPython/issues/8320
og:image:altSummary VirtualMachine::invoke_exception currently takes its class argument by owned value: // crates/vm/src/exceptions.rs pub fn invoke_exception( &self, cls: PyTypeRef, // PyRef args: Vec...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameyouknowone
hostnamegithub.com
expected-hostnamegithub.com
None78938542173c0d8e4ad1aefc7954896e81c10ce2620286603ef14cf593bd5a11
turbo-cache-controlno-preview
go-importgithub.com/RustPython/RustPython git https://github.com/RustPython/RustPython.git
octolytics-dimension-user_id39710557
octolytics-dimension-user_loginRustPython
octolytics-dimension-repository_id135201145
octolytics-dimension-repository_nwoRustPython/RustPython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id135201145
octolytics-dimension-repository_network_root_nwoRustPython/RustPython
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
release1a427601e09953033b696253e754ebc7328096a7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/RustPython/RustPython/issues/8320#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FRustPython%2FRustPython%2Fissues%2F8320
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
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
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%2FRustPython%2FRustPython%2Fissues%2F8320
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=RustPython%2FRustPython
Reloadhttps://github.com/RustPython/RustPython/issues/8320
Reloadhttps://github.com/RustPython/RustPython/issues/8320
Reloadhttps://github.com/RustPython/RustPython/issues/8320
Please reload this pagehttps://github.com/RustPython/RustPython/issues/8320
RustPython https://github.com/RustPython
RustPythonhttps://github.com/RustPython/RustPython
Notifications https://github.com/login?return_to=%2FRustPython%2FRustPython
Fork 1.5k https://github.com/login?return_to=%2FRustPython%2FRustPython
Star 22.2k https://github.com/login?return_to=%2FRustPython%2FRustPython
Code https://github.com/RustPython/RustPython
Issues 294 https://github.com/RustPython/RustPython/issues
Pull requests 105 https://github.com/RustPython/RustPython/pulls
Discussions https://github.com/RustPython/RustPython/discussions
Actions https://github.com/RustPython/RustPython/actions
Projects https://github.com/RustPython/RustPython/projects
Models https://github.com/RustPython/RustPython/models
Wiki https://github.com/RustPython/RustPython/wiki
Security and quality 0 https://github.com/RustPython/RustPython/security
Insights https://github.com/RustPython/RustPython/pulse
Code https://github.com/RustPython/RustPython
Issues https://github.com/RustPython/RustPython/issues
Pull requests https://github.com/RustPython/RustPython/pulls
Discussions https://github.com/RustPython/RustPython/discussions
Actions https://github.com/RustPython/RustPython/actions
Projects https://github.com/RustPython/RustPython/projects
Models https://github.com/RustPython/RustPython/models
Wiki https://github.com/RustPython/RustPython/wiki
Security and quality https://github.com/RustPython/RustPython/security
Insights https://github.com/RustPython/RustPython/pulse
#8327https://github.com/RustPython/RustPython/pull/8327
Take &Py instead of PyTypeRef in vm.invoke_exception()https://github.com/RustPython/RustPython/issues/8320#top
#8327https://github.com/RustPython/RustPython/pull/8327
https://github.com/kangdora
z-ca-2026Tag to track Contribution Academy 2026https://github.com/RustPython/RustPython/issues?q=state%3Aopen%20label%3A%22z-ca-2026%22
https://github.com/youknowone
youknowonehttps://github.com/youknowone
on Jul 19, 2026https://github.com/RustPython/RustPython/issues/8320#issue-4921354533
kangdorahttps://github.com/kangdora
z-ca-2026Tag to track Contribution Academy 2026https://github.com/RustPython/RustPython/issues?q=state%3Aopen%20label%3A%22z-ca-2026%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.