René's URL Explorer Experiment


Title: Take a borrow in invoke_exception instead of an owned type by kangdora · Pull Request #8327 · RustPython/RustPython · GitHub

Open Graph Title: Take a borrow in invoke_exception instead of an owned type by kangdora · Pull Request #8327 · RustPython/RustPython

X Title: Take a borrow in invoke_exception instead of an owned type by kangdora · Pull Request #8327 · RustPython/RustPython

Description: Closes #8320 This PR follows our AI policy Summary VirtualMachine::invoke_exception took its class argument as an owned PyTypeRef, but it never takes ownership — it only borrows cls for PyType::call (which itself is defined as fn call(zelf: &Py, ...)) and for Display in the error message. cls is never moved or stored. Because the signature demanded ownership, callers holding only a borrow had to .to_owned() — an atomic refcount bump and later decrement — purely to satisfy the type, even though the reference was dropped immediately after the call. This changes the parameter to &Py, the exact borrowed form (PyTypeRef = PyRef derefs to Py), and drops those .to_owned() calls. Call sites updated: file before stdlib/_io.rs (3×) vm.ctx.exceptions.blocking_io_error.to_owned() stdlib/sys.rs vm.ctx.exceptions.system_exit.to_owned() stdlib/builtins.rs vm.ctx.exceptions.system_exit.to_owned() stdlib/_thread.rs vm.ctx.exceptions.system_exit.to_owned() vm/mod.rs vm.ctx.exceptions.system_exit.to_owned() vm/vm_new.rs vm.ctx.exceptions.stop_iteration.to_owned() exception_group.rs vm.ctx.exceptions.base_exception_group.to_owned() exceptions.rs typ.to_owned() capi/pyerrors.rs exc_type.to_owned() ExceptionCtor::instantiate / instantiate_value own their cls via the self match, so they just pass &cls — no clone either way. No behavior change; this is an API/ergonomics cleanup that removes unnecessary refcount churn and makes the helper consistent with the PyType::call it wraps. Test plan test_exceptions, test_sys, test_io (667 tests, covering the BlockingIOError sites), extra_tests/snippets/builtin_exceptions.py: no regressions (the single test_exceptions failure, test_badisinstance, is pre-existing on main). Exercised each touched path manually: sys.exit / exit() / _thread.exit, raise ValueError and raise ValueError(...) via ExceptionCtor, ExceptionGroup, generator StopIteration, OSError from a failed open, and the genuine Err path of invoke_exception (a BaseException subclass whose __new__ returns a non-exception). cargo fmt --check / cargo clippy: clean. Assisted-by: Claude Code:claude-fable-5 Summary by CodeRabbit Refactor Streamlined internal exception creation across the runtime by avoiding unnecessary exception-type copies. Preserved existing behavior for SystemExit, BlockingIOError, StopIteration, COM errors, and other exception paths. Improved exception handling efficiency without changing public functionality or error messages.

Open Graph Description: Closes #8320 This PR follows our AI policy Summary VirtualMachine::invoke_exception took its class argument as an owned PyTypeRef, but it never takes ownership — it only borrows cls for PyType::c...

X Description: Closes #8320 This PR follows our AI policy Summary VirtualMachine::invoke_exception took its class argument as an owned PyTypeRef, but it never takes ownership — it only borrows cls for PyType::c...

Opengraph URL: https://github.com/RustPython/RustPython/pull/8327

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:52da797d-7312-91a3-d9f4-2f1af60cc592
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC50E:DC86C:2F8CBC1:44CBECD:6A60EB04
html-safe-noncea47fb726b7df362a90a7df06ddc6a64014d9382094b593316d4ddcd9c2b3a5f8
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDNTBFOkRDODZDOjJGOENCQzE6NDRDQkVDRDo2QTYwRUIwNCIsInZpc2l0b3JfaWQiOiIzMjcwNDgyMTA4NjUwNDE2OTAwIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacd2eef5728b6448b57ffdedd6cdbb14b3f471f236c4f75e5bc5d8feaf6f4721a1
hovercard-subject-tagpull_request:4087680027
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/RustPython/RustPython/pull/8327/files
twitter:imagehttps://avatars.githubusercontent.com/u/182498567?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/182498567?s=400&v=4
og:image:altCloses #8320 This PR follows our AI policy Summary VirtualMachine::invoke_exception took its class argument as an owned PyTypeRef, but it never takes ownership — it only borrows cls for PyType::c...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None3ba36a464b9464992131f4003292a219fc87f92404b0dbe3fd1ef07f11102d0f
turbo-cache-controlno-preview
diff-viewunified
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 full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release2cc5e4f897a27632dd600edfec4c737bea2f8338
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/RustPython/RustPython/pull/8327/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FRustPython%2FRustPython%2Fpull%2F8327%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
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%2Fpull%2F8327%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=RustPython%2FRustPython
Reloadhttps://github.com/RustPython/RustPython/pull/8327/files
Reloadhttps://github.com/RustPython/RustPython/pull/8327/files
Reloadhttps://github.com/RustPython/RustPython/pull/8327/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/8327/files
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 293 https://github.com/RustPython/RustPython/issues
Pull requests 102 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
Sign up for GitHub https://github.com/signup?return_to=%2FRustPython%2FRustPython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2FRustPython%2FRustPython%2Fissues%2Fnew%2Fchoose
youknowonehttps://github.com/youknowone
RustPython:mainhttps://github.com/RustPython/RustPython/tree/main
kangdora:invoke-exception-borrowhttps://github.com/kangdora/RustPython/tree/invoke-exception-borrow
Conversation 2 https://github.com/RustPython/RustPython/pull/8327
Commits 2 https://github.com/RustPython/RustPython/pull/8327/commits
Checks 25 https://github.com/RustPython/RustPython/pull/8327/checks
Files changed https://github.com/RustPython/RustPython/pull/8327/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/8327/files
Take a borrow in invoke_exception instead of an owned type https://github.com/RustPython/RustPython/pull/8327/files#top
Show all changes 2 commits https://github.com/RustPython/RustPython/pull/8327/files
958ae0e Take a borrow in invoke_exception instead of an owned type kangdora Jul 20, 2026 https://github.com/RustPython/RustPython/pull/8327/commits/958ae0e7fd1c2eec065622b3a5878e10dc22deb2
6ba2694 Re-run CI kangdora Jul 20, 2026 https://github.com/RustPython/RustPython/pull/8327/commits/6ba26943d3a1757d93449e59fba31abdea470ec3
Clear filters https://github.com/RustPython/RustPython/pull/8327/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/8327/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/8327/files
pyerrors.rs https://github.com/RustPython/RustPython/pull/8327/files#diff-182ff1f3912ef23ede35e910440a570c251f3a564eef94cf5ca876939b3ca81d
exception_group.rs https://github.com/RustPython/RustPython/pull/8327/files#diff-e741d4f5b04ffb507b177ea8becb9bcd88e4ee30e6de17eab3c44878d13c0c81
exceptions.rs https://github.com/RustPython/RustPython/pull/8327/files#diff-f527bc3e68302079a32d6da36816531e3e22dd31ff91ef0ff0f2688673712747
function.rs https://github.com/RustPython/RustPython/pull/8327/files#diff-d4cf72f95963a6d3e08f9e7e53594d6b5e2cc7711afbc0b490894d97dc8d8648
_io.rs https://github.com/RustPython/RustPython/pull/8327/files#diff-90825edc73ec293e0ed3b2dbed7f0a492b1f8e51c25747326089a912267bdd3e
_thread.rs https://github.com/RustPython/RustPython/pull/8327/files#diff-0006354bf5c0b6258c334f326e9c125eae4c55e8dae289a4990e76d7503885cb
builtins.rs https://github.com/RustPython/RustPython/pull/8327/files#diff-ce8bd80bb61ce870dbf04415913693df814ebda260d3fc784b689a657e694ca3
sys.rs https://github.com/RustPython/RustPython/pull/8327/files#diff-e7f7c10b81f88d7af77af76257284e18e72ed9da63ff63675a9e9cb31c8d262d
mod.rs https://github.com/RustPython/RustPython/pull/8327/files#diff-fe30ecf7c6b462e46e0874a55a05ea0edba83cefad5ac7a86e7137fa8f86ba74
vm_new.rs https://github.com/RustPython/RustPython/pull/8327/files#diff-0ed409205fe13b41775e66f6be22c13146e9aebf1000a069a10b39293f219a7b
crates/capi/src/pyerrors.rshttps://github.com/RustPython/RustPython/pull/8327/files#diff-182ff1f3912ef23ede35e910440a570c251f3a564eef94cf5ca876939b3ca81d
View file https://github.com/kangdora/RustPython/blob/6ba26943d3a1757d93449e59fba31abdea470ec3/crates/capi/src/pyerrors.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8327/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8327/files#diff-182ff1f3912ef23ede35e910440a570c251f3a564eef94cf5ca876939b3ca81d
https://github.com/RustPython/RustPython/pull/8327/files#diff-182ff1f3912ef23ede35e910440a570c251f3a564eef94cf5ca876939b3ca81d
crates/vm/src/exception_group.rshttps://github.com/RustPython/RustPython/pull/8327/files#diff-e741d4f5b04ffb507b177ea8becb9bcd88e4ee30e6de17eab3c44878d13c0c81
View file https://github.com/kangdora/RustPython/blob/6ba26943d3a1757d93449e59fba31abdea470ec3/crates/vm/src/exception_group.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8327/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8327/files#diff-e741d4f5b04ffb507b177ea8becb9bcd88e4ee30e6de17eab3c44878d13c0c81
https://github.com/RustPython/RustPython/pull/8327/files#diff-e741d4f5b04ffb507b177ea8becb9bcd88e4ee30e6de17eab3c44878d13c0c81
crates/vm/src/exceptions.rshttps://github.com/RustPython/RustPython/pull/8327/files#diff-f527bc3e68302079a32d6da36816531e3e22dd31ff91ef0ff0f2688673712747
View file https://github.com/kangdora/RustPython/blob/6ba26943d3a1757d93449e59fba31abdea470ec3/crates/vm/src/exceptions.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8327/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8327/files#diff-f527bc3e68302079a32d6da36816531e3e22dd31ff91ef0ff0f2688673712747
https://github.com/RustPython/RustPython/pull/8327/files#diff-f527bc3e68302079a32d6da36816531e3e22dd31ff91ef0ff0f2688673712747
https://github.com/RustPython/RustPython/pull/8327/files#diff-f527bc3e68302079a32d6da36816531e3e22dd31ff91ef0ff0f2688673712747
https://github.com/RustPython/RustPython/pull/8327/files#diff-f527bc3e68302079a32d6da36816531e3e22dd31ff91ef0ff0f2688673712747
https://github.com/RustPython/RustPython/pull/8327/files#diff-f527bc3e68302079a32d6da36816531e3e22dd31ff91ef0ff0f2688673712747
https://github.com/RustPython/RustPython/pull/8327/files#diff-f527bc3e68302079a32d6da36816531e3e22dd31ff91ef0ff0f2688673712747
https://github.com/RustPython/RustPython/pull/8327/files#diff-f527bc3e68302079a32d6da36816531e3e22dd31ff91ef0ff0f2688673712747
https://github.com/RustPython/RustPython/pull/8327/files#diff-f527bc3e68302079a32d6da36816531e3e22dd31ff91ef0ff0f2688673712747
crates/vm/src/stdlib/_ctypes/function.rshttps://github.com/RustPython/RustPython/pull/8327/files#diff-d4cf72f95963a6d3e08f9e7e53594d6b5e2cc7711afbc0b490894d97dc8d8648
View file https://github.com/kangdora/RustPython/blob/6ba26943d3a1757d93449e59fba31abdea470ec3/crates/vm/src/stdlib/_ctypes/function.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8327/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8327/files#diff-d4cf72f95963a6d3e08f9e7e53594d6b5e2cc7711afbc0b490894d97dc8d8648
https://github.com/RustPython/RustPython/pull/8327/files#diff-d4cf72f95963a6d3e08f9e7e53594d6b5e2cc7711afbc0b490894d97dc8d8648
crates/vm/src/stdlib/_io.rshttps://github.com/RustPython/RustPython/pull/8327/files#diff-90825edc73ec293e0ed3b2dbed7f0a492b1f8e51c25747326089a912267bdd3e
View file https://github.com/kangdora/RustPython/blob/6ba26943d3a1757d93449e59fba31abdea470ec3/crates/vm/src/stdlib/_io.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8327/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8327/files#diff-90825edc73ec293e0ed3b2dbed7f0a492b1f8e51c25747326089a912267bdd3e
https://github.com/RustPython/RustPython/pull/8327/files#diff-90825edc73ec293e0ed3b2dbed7f0a492b1f8e51c25747326089a912267bdd3e
https://github.com/RustPython/RustPython/pull/8327/files#diff-90825edc73ec293e0ed3b2dbed7f0a492b1f8e51c25747326089a912267bdd3e
https://github.com/RustPython/RustPython/pull/8327/files#diff-90825edc73ec293e0ed3b2dbed7f0a492b1f8e51c25747326089a912267bdd3e
https://github.com/RustPython/RustPython/pull/8327/files#diff-90825edc73ec293e0ed3b2dbed7f0a492b1f8e51c25747326089a912267bdd3e
https://github.com/RustPython/RustPython/pull/8327/files#diff-90825edc73ec293e0ed3b2dbed7f0a492b1f8e51c25747326089a912267bdd3e
crates/vm/src/stdlib/_thread.rshttps://github.com/RustPython/RustPython/pull/8327/files#diff-0006354bf5c0b6258c334f326e9c125eae4c55e8dae289a4990e76d7503885cb
View file https://github.com/kangdora/RustPython/blob/6ba26943d3a1757d93449e59fba31abdea470ec3/crates/vm/src/stdlib/_thread.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8327/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8327/files#diff-0006354bf5c0b6258c334f326e9c125eae4c55e8dae289a4990e76d7503885cb
https://github.com/RustPython/RustPython/pull/8327/files#diff-0006354bf5c0b6258c334f326e9c125eae4c55e8dae289a4990e76d7503885cb
crates/vm/src/stdlib/builtins.rshttps://github.com/RustPython/RustPython/pull/8327/files#diff-ce8bd80bb61ce870dbf04415913693df814ebda260d3fc784b689a657e694ca3
View file https://github.com/kangdora/RustPython/blob/6ba26943d3a1757d93449e59fba31abdea470ec3/crates/vm/src/stdlib/builtins.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8327/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8327/files#diff-ce8bd80bb61ce870dbf04415913693df814ebda260d3fc784b689a657e694ca3
https://github.com/RustPython/RustPython/pull/8327/files#diff-ce8bd80bb61ce870dbf04415913693df814ebda260d3fc784b689a657e694ca3
crates/vm/src/stdlib/sys.rshttps://github.com/RustPython/RustPython/pull/8327/files#diff-e7f7c10b81f88d7af77af76257284e18e72ed9da63ff63675a9e9cb31c8d262d
View file https://github.com/kangdora/RustPython/blob/6ba26943d3a1757d93449e59fba31abdea470ec3/crates/vm/src/stdlib/sys.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8327/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8327/files#diff-e7f7c10b81f88d7af77af76257284e18e72ed9da63ff63675a9e9cb31c8d262d
https://github.com/RustPython/RustPython/pull/8327/files#diff-e7f7c10b81f88d7af77af76257284e18e72ed9da63ff63675a9e9cb31c8d262d
crates/vm/src/vm/mod.rshttps://github.com/RustPython/RustPython/pull/8327/files#diff-fe30ecf7c6b462e46e0874a55a05ea0edba83cefad5ac7a86e7137fa8f86ba74
View file https://github.com/kangdora/RustPython/blob/6ba26943d3a1757d93449e59fba31abdea470ec3/crates/vm/src/vm/mod.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8327/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8327/files#diff-fe30ecf7c6b462e46e0874a55a05ea0edba83cefad5ac7a86e7137fa8f86ba74
https://github.com/RustPython/RustPython/pull/8327/files#diff-fe30ecf7c6b462e46e0874a55a05ea0edba83cefad5ac7a86e7137fa8f86ba74
crates/vm/src/vm/vm_new.rshttps://github.com/RustPython/RustPython/pull/8327/files#diff-0ed409205fe13b41775e66f6be22c13146e9aebf1000a069a10b39293f219a7b
View file https://github.com/kangdora/RustPython/blob/6ba26943d3a1757d93449e59fba31abdea470ec3/crates/vm/src/vm/vm_new.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/8327/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/8327/files#diff-0ed409205fe13b41775e66f6be22c13146e9aebf1000a069a10b39293f219a7b
https://github.com/RustPython/RustPython/pull/8327/files#diff-0ed409205fe13b41775e66f6be22c13146e9aebf1000a069a10b39293f219a7b
Please reload this pagehttps://github.com/RustPython/RustPython/pull/8327/files
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.