René's URL Explorer Experiment


Title: Handle non-string keys in class namespaces without panicking by Copilot · Pull Request #6503 · RustPython/RustPython · GitHub

Open Graph Title: Handle non-string keys in class namespaces without panicking by Copilot · Pull Request #6503 · RustPython/RustPython

X Title: Handle non-string keys in class namespaces without panicking by Copilot · Pull Request #6503 · RustPython/RustPython

Description: Setting non-string keys in a class namespace (e.g., via locals()[42] = "abc") caused RustPython to panic; mappingproxy also ignored such entries. Class namespace handling Split string attributes from non-string entries when building types; keep non-string entries in a side dict to avoid panics. Expose combined view via __dict__/mappingproxy so non-string keys are still reachable. Mappingproxy behavior Allow lookup, containment, and copy over the preserved non-string namespace entries. Error messaging dict.to_attributes now raises a clear TypeError for non-string attribute keys. Regression coverage Added snippet ensuring locals()[42] in a class ends up accessible via __dict__. Example: class B(object): locals()[42] = "abc" assert B.__dict__[42] == "abc" Original prompt This section details on the original issue you should resolve Setting locals() value leads to panicked. In the following example, we set the locals()[42] as a string "abc" in a class A. Then it causes rustpython panicked. test.py: class A(object): locals()[42] = 'abc' Behavior on rustpython(rustpython 0.1.2): thread 'main' panicked at 'dict has non-string keys: [PyObject PyInt { value: 42 }]', vm/src/builtins/dict.rs:537:48 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace Expected behavior(behavior on CPython 3.9.1): work well on the Python interpreter Step to reproduce: type "cargo run --release test.py" on the console of Ubuntu 18.04 and MacOS Big Sur 11.7.1 rust version: rustc 1.65.0 The proper test is: `` class A(object): locals()['42'] = 'abc' ## Comments on the Issue (you are @copilot in this section) @DimitrisJim I honestly was not aware you could update the class `__dict__` this way. Another shorter repro is `type("A", (), {1:1})` with any other non string key for the dict. We currently store the class namespace using a map with string keys. Weirdly enough no test cases for CPython test this as far as I could find. I doubt it could be considered an implementation detail, though. Fixes #4314 💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Open Graph Description: Setting non-string keys in a class namespace (e.g., via locals()[42] = "abc") caused RustPython to panic; mappingproxy also ignored such entries. Class namespace handling Split string ...

X Description: Setting non-string keys in a class namespace (e.g., via locals()[42] = "abc") caused RustPython to panic; mappingproxy also ignored such entries. Class namespace handling Split...

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

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:26443781-684d-e639-2c8b-000acab722e7
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idD17C:2D6BC4:2E05A27:3D8FC1E:69705762
html-safe-nonce925dcc96d81c6313ae9ba4e3d18be3113b34b51b70088921cbbbd0d7a7a25710
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEMTdDOjJENkJDNDoyRTA1QTI3OjNEOEZDMUU6Njk3MDU3NjIiLCJ2aXNpdG9yX2lkIjoiODIzMTY2Mzk4NTYzODk5MjM0IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmace542cf2652faeaf162cdeec2a0034e93a7b8864692a7cf9ee1961cacd1dc17ee
hovercard-subject-tagpull_request:3129383288
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/6503/files
twitter:imagehttps://avatars.githubusercontent.com/in/1143301?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/1143301?s=400&v=4
og:image:altSetting non-string keys in a class namespace (e.g., via locals()[42] = "abc") caused RustPython to panic; mappingproxy also ignored such entries. Class namespace handling Split string ...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None9920a62ba22d06470388e2904804fb7e5ec51c9e35f81784e9191394c74b2bd2
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
releasef643964067a552f02067066d6a910b2f90a5721f
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FRustPython%2FRustPython%2Fpull%2F6503%2Ffiles
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://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FRustPython%2FRustPython%2Fpull%2F6503%2Ffiles
Sign up https://patch-diff.githubusercontent.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://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files
Reloadhttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files
Reloadhttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files
RustPython https://patch-diff.githubusercontent.com/RustPython
RustPythonhttps://patch-diff.githubusercontent.com/RustPython/RustPython
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FRustPython%2FRustPython
Fork 1.4k https://patch-diff.githubusercontent.com/login?return_to=%2FRustPython%2FRustPython
Star 21.7k https://patch-diff.githubusercontent.com/login?return_to=%2FRustPython%2FRustPython
Code https://patch-diff.githubusercontent.com/RustPython/RustPython
Issues 276 https://patch-diff.githubusercontent.com/RustPython/RustPython/issues
Pull requests 92 https://patch-diff.githubusercontent.com/RustPython/RustPython/pulls
Discussions https://patch-diff.githubusercontent.com/RustPython/RustPython/discussions
Actions https://patch-diff.githubusercontent.com/RustPython/RustPython/actions
Projects 0 https://patch-diff.githubusercontent.com/RustPython/RustPython/projects
Wiki https://patch-diff.githubusercontent.com/RustPython/RustPython/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/RustPython/RustPython/security
Please reload this pagehttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files
Insights https://patch-diff.githubusercontent.com/RustPython/RustPython/pulse
Code https://patch-diff.githubusercontent.com/RustPython/RustPython
Issues https://patch-diff.githubusercontent.com/RustPython/RustPython/issues
Pull requests https://patch-diff.githubusercontent.com/RustPython/RustPython/pulls
Discussions https://patch-diff.githubusercontent.com/RustPython/RustPython/discussions
Actions https://patch-diff.githubusercontent.com/RustPython/RustPython/actions
Projects https://patch-diff.githubusercontent.com/RustPython/RustPython/projects
Wiki https://patch-diff.githubusercontent.com/RustPython/RustPython/wiki
Security https://patch-diff.githubusercontent.com/RustPython/RustPython/security
Insights https://patch-diff.githubusercontent.com/RustPython/RustPython/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2FRustPython%2FRustPython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2FRustPython%2FRustPython%2Fissues%2Fnew%2Fchoose
Copilothttps://patch-diff.githubusercontent.com/apps/copilot-swe-agent
mainhttps://patch-diff.githubusercontent.com/RustPython/RustPython/tree/main
copilot/fix-locals-value-panickedhttps://patch-diff.githubusercontent.com/RustPython/RustPython/tree/copilot/fix-locals-value-panicked
Conversation 1 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503
Commits 6 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/commits
Checks 0 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/checks
Files changed 6 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files
Handle non-string keys in class namespaces without panicking https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#top
Show all changes 6 commits https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files
829a407 Initial plan Copilot Dec 25, 2025 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/commits/829a40711475a263ae279f1861fec11f941cbc3f
a334a92 Handle non-string class namespace keys safely Copilot Dec 25, 2025 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/commits/a334a92ed60b0668f40bb1f0697521ae5092e94e
7b7fc3c Refine non-string class dict handling Copilot Dec 25, 2025 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/commits/7b7fc3c056af5c59b109178c8299aae5bbe36716
cab7874 Clone non-string attrs before erroring Copilot Dec 25, 2025 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/commits/cab7874088f1d7f7d9e21cb91cc44600a20454be
1dfabee Clarify non-string attribute expectation Copilot Dec 25, 2025 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/commits/1dfabee97dd63d12230167fb99cc502fa6d974bb
be3d647 Tidy non-string attribute error handling Copilot Dec 25, 2025 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/commits/be3d6478fb7991a8da950963396c347a7c53cc70
Clear filters https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files
Please reload this pagehttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files
Please reload this pagehttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files
dict.rs https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-da22219fe05502509c75f7b1ba56079fecf076601f219531bef523705764e68b
mappingproxy.rs https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-55b1556ffbbe2f476dcfa0ecef4cf2299dfb1c0e33f0e44ae85bb7c27232d5f1
type.rs https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
core.rs https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-29e5bc70b379859cc90757773e821848e53dff65ce99167408b6f547bc317196
thread.rs https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-c170ae4a919bb65dc874267572bcc769c93aecc88705e9c1166dd6ad65ddb694
builtin_mappingproxy.py https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-c20cef86d71ba9c778412768584970ec234f835d86628047d839ae5d8a144e1c
crates/vm/src/builtins/dict.rshttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-da22219fe05502509c75f7b1ba56079fecf076601f219531bef523705764e68b
View file https://patch-diff.githubusercontent.com/RustPython/RustPython/blob/be3d6478fb7991a8da950963396c347a7c53cc70/crates/vm/src/builtins/dict.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-da22219fe05502509c75f7b1ba56079fecf076601f219531bef523705764e68b
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-da22219fe05502509c75f7b1ba56079fecf076601f219531bef523705764e68b
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-da22219fe05502509c75f7b1ba56079fecf076601f219531bef523705764e68b
crates/vm/src/builtins/mappingproxy.rshttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-55b1556ffbbe2f476dcfa0ecef4cf2299dfb1c0e33f0e44ae85bb7c27232d5f1
View file https://patch-diff.githubusercontent.com/RustPython/RustPython/blob/be3d6478fb7991a8da950963396c347a7c53cc70/crates/vm/src/builtins/mappingproxy.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-55b1556ffbbe2f476dcfa0ecef4cf2299dfb1c0e33f0e44ae85bb7c27232d5f1
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-55b1556ffbbe2f476dcfa0ecef4cf2299dfb1c0e33f0e44ae85bb7c27232d5f1
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-55b1556ffbbe2f476dcfa0ecef4cf2299dfb1c0e33f0e44ae85bb7c27232d5f1
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-55b1556ffbbe2f476dcfa0ecef4cf2299dfb1c0e33f0e44ae85bb7c27232d5f1
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-55b1556ffbbe2f476dcfa0ecef4cf2299dfb1c0e33f0e44ae85bb7c27232d5f1
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-55b1556ffbbe2f476dcfa0ecef4cf2299dfb1c0e33f0e44ae85bb7c27232d5f1
crates/vm/src/builtins/type.rshttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
View file https://patch-diff.githubusercontent.com/RustPython/RustPython/blob/be3d6478fb7991a8da950963396c347a7c53cc70/crates/vm/src/builtins/type.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-fb88962f9343ca7b8d31bfe34f5063136575e05eadae6fccb3b64658e14b0d6c
crates/vm/src/object/core.rshttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-29e5bc70b379859cc90757773e821848e53dff65ce99167408b6f547bc317196
View file https://patch-diff.githubusercontent.com/RustPython/RustPython/blob/be3d6478fb7991a8da950963396c347a7c53cc70/crates/vm/src/object/core.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-29e5bc70b379859cc90757773e821848e53dff65ce99167408b6f547bc317196
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-29e5bc70b379859cc90757773e821848e53dff65ce99167408b6f547bc317196
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-29e5bc70b379859cc90757773e821848e53dff65ce99167408b6f547bc317196
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-29e5bc70b379859cc90757773e821848e53dff65ce99167408b6f547bc317196
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-29e5bc70b379859cc90757773e821848e53dff65ce99167408b6f547bc317196
crates/vm/src/stdlib/thread.rshttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-c170ae4a919bb65dc874267572bcc769c93aecc88705e9c1166dd6ad65ddb694
View file https://patch-diff.githubusercontent.com/RustPython/RustPython/blob/be3d6478fb7991a8da950963396c347a7c53cc70/crates/vm/src/stdlib/thread.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-c170ae4a919bb65dc874267572bcc769c93aecc88705e9c1166dd6ad65ddb694
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-c170ae4a919bb65dc874267572bcc769c93aecc88705e9c1166dd6ad65ddb694
extra_tests/snippets/builtin_mappingproxy.pyhttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-c20cef86d71ba9c778412768584970ec234f835d86628047d839ae5d8a144e1c
View file https://patch-diff.githubusercontent.com/RustPython/RustPython/blob/be3d6478fb7991a8da950963396c347a7c53cc70/extra_tests/snippets/builtin_mappingproxy.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/files#diff-c20cef86d71ba9c778412768584970ec234f835d86628047d839ae5d8a144e1c
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.