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/checks(.:format)
route-controllerpull_requests
route-actionchecks
fetch-noncev2:f3748035-335e-8a27-d74c-79fd7203edad
current-catalog-service-hash87dc3bc62d9b466312751bfd5f889726f4f1337bdff4e8be7da7c93d6c00a25a
request-id8260:28EEF5:6F8406:9A6C57:696FE5AC
html-safe-nonceb71d7f4ae030bd2db9a39296534ee1d0bb91ca997c605df9b8042c902f9326a1
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4MjYwOjI4RUVGNTo2Rjg0MDY6OUE2QzU3OjY5NkZFNUFDIiwidmlzaXRvcl9pZCI6IjYyMDQwOTUyODQ2MzY1NDIzODAiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac3509b117c79f2b1b5d5752f641832db1f438f077e45c55e6bd0da8a5e25cf561
hovercard-subject-tagpull_request:3129383288
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,checks,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/checks
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/RustPython/RustPython/pull/6503/checks
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
Nonebb7c872aa74896d911608183f4997f8b9c121a1624064705ec4570cd91bd7839
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 full-width full-width-p-0
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release257e1b418957178bd3ac9f7520608a40ebbb0f1e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/checks#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%2Fchecks
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%2Fchecks
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%2Fchecks&source=header-repo&source_repo=RustPython%2FRustPython
Reloadhttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/checks
Reloadhttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/checks
Reloadhttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/checks
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/checks
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
Please reload this pagehttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/checks
Handle non-string keys in class namespaces without panicking https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/checks#top
Please reload this pagehttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6503/checks
Auto-format PR on: pull_request_target https://patch-diff.githubusercontent.com/RustPython/RustPython/actions/runs/20497302667
CI on: pull_request https://patch-diff.githubusercontent.com/RustPython/RustPython/actions/runs/20497302918
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.