René's URL Explorer Experiment


Title: Improve CPython compatibility related with PyBoundMethod by moreal · Pull Request #7476 · RustPython/RustPython · GitHub

Open Graph Title: Improve CPython compatibility related with PyBoundMethod by moreal · Pull Request #7476 · RustPython/RustPython

X Title: Improve CPython compatibility related with PyBoundMethod by moreal · Pull Request #7476 · RustPython/RustPython

Description: This pull request adjusts PyBoundMethod for compatibility with CPython. Behavior changes Correct PyBoundMethod initialization validation Implement missing __get__ Raise error when __name__ when calling PyBoundMethod __reduce__ class A: def f(): ... class B: def __call__(self): ... print(type(A().f)(B(), 1).__reduce__()) CPython (3.14.3) >>> class A: ... def f(): ... ... >>> A().f > >>> type(A().f) >>> type(A().f)(None) Traceback (most recent call last): File "", line 1, in type(A().f)(None) ~~~~~~~~~~~^^^^^^ TypeError: method expected 2 arguments, got 1 >>> type(A().f)(None, None) Traceback (most recent call last): File "", line 1, in type(A().f)(None, None) ~~~~~~~~~~~^^^^^^^^^^^^ TypeError: first argument must be callable >>> type(A().f)(lambda x: x, None) Traceback (most recent call last): File "", line 1, in type(A().f)(lambda x: x, None) ~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^ TypeError: instance must not be None >>> type(A().f)(lambda x: x, 1) of 1> >>> type(A().f).__get__ Traceback (most recent call last): File "/path/to/RustPython/hello.py", line 10, in print(type(A().f)(B(), 1).__reduce__()) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^ AttributeError: 'B' object has no attribute '__name__'. Did you mean: '__ne__'? RustPython (before this pull request) >>>>> class A: ..... def f(): ... ..... >>>>> A().f > >>>>> type(A().f) >>>>> type(A().f)(None, None) >>>>> type(A().f)(lambda x: x, None) of None> >>>>> type(A().f)(lambda x: x, 1) of 1> >>>>> type(A().f).__get__ Traceback (most recent call last): File "", line 1, in AttributeError: type object 'method' has no attribute '__get__'. Did you mean: '__ge__'? (, (1, None)) RustPython (after this pull request) >>>>> class A: ..... def f(): ... ..... >>>>> A().f > >>>>> type(A().f) >>>>> type(A().f)(None) Traceback (most recent call last): File "", line 1, in TypeError: expected at least 2 arguments, got 1 >>>>> type(A().f)(None, None) Traceback (most recent call last): File "", line 1, in TypeError: first argument must be callable >>>>> type(A().f)(lambda x: x, None) Traceback (most recent call last): File "", line 1, in TypeError: instance must not be None >>>>> type(A().f)(lambda x: x, 1) of 1> >>>>> type(A().f).__get__ Traceback (most recent call last): File "hello.py", line 9, in print(type(A().f)(B(), 1).__reduce__()) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^ AttributeError: 'B' object has no attribute '__name__'. Did you mean: '__ne__'? Summary by CodeRabbit Bug Fixes Enhanced validation when creating bound methods; passing a non-callable function or None as the object parameter now correctly raises a TypeError. Improved error handling in bound method serialization; errors during attribute access are now properly propagated instead of being silently ignored.

Open Graph Description: This pull request adjusts PyBoundMethod for compatibility with CPython. Behavior changes Correct PyBoundMethod initialization validation Implement missing __get__ Raise error when __name__ when ca...

X Description: This pull request adjusts PyBoundMethod for compatibility with CPython. Behavior changes Correct PyBoundMethod initialization validation Implement missing __get__ Raise error when __name__ when ca...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:1c7c3014-3d15-72f3-4dc9-56d9ca18c6c1
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idE804:174610:3174DF:40A662:6A5FEE82
html-safe-nonce835c301765fad350735b47abb7cc9f0521ac0aae0c6d0382a991343a93dfc10f
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFODA0OjE3NDYxMDozMTc0REY6NDBBNjYyOjZBNUZFRTgyIiwidmlzaXRvcl9pZCI6IjEyNTg2MjY2NjQ1MDAyOTMyNTAiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac257935708c4e7ff83db9a896ba1fa5a71ea46f924d580aec5fb865f7a8cc7122
hovercard-subject-tagpull_request:3425082909
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/7476/files
twitter:imagehttps://avatars.githubusercontent.com/u/26626194?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/26626194?s=400&v=4
og:image:altThis pull request adjusts PyBoundMethod for compatibility with CPython. Behavior changes Correct PyBoundMethod initialization validation Implement missing __get__ Raise error when __name__ when ca...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noneba296ecd3a3521238fe43b3b3b08cc09207ddc21173e16ee656db03803de8e2b
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
release6e50fb37e29e4aa0df6386cb485e58b0e3ca97ab
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/RustPython/RustPython/pull/7476/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FRustPython%2FRustPython%2Fpull%2F7476%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%2F7476%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/7476/files
Reloadhttps://github.com/RustPython/RustPython/pull/7476/files
Reloadhttps://github.com/RustPython/RustPython/pull/7476/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/7476/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 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
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
moreal:method-fixeshttps://github.com/moreal/RustPython/tree/method-fixes
Conversation 3 https://github.com/RustPython/RustPython/pull/7476
Commits 3 https://github.com/RustPython/RustPython/pull/7476/commits
Checks 18 https://github.com/RustPython/RustPython/pull/7476/checks
Files changed https://github.com/RustPython/RustPython/pull/7476/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/7476/files
Improve CPython compatibility related with PyBoundMethod https://github.com/RustPython/RustPython/pull/7476/files#top
Show all changes 3 commits https://github.com/RustPython/RustPython/pull/7476/files
333af80 Add GetDescriptor for PyBoundMethod (return self) moreal Mar 20, 2026 https://github.com/RustPython/RustPython/pull/7476/commits/333af80f44f04526e47b558b85e20481eab49f7f
1a3fd9f Add constructor validation for PyBoundMethod moreal Mar 20, 2026 https://github.com/RustPython/RustPython/pull/7476/commits/1a3fd9f8917c5927a4050d5fb212887d25bb7d0b
b725ca7 Fix PyBoundMethod __reduce__ to propagate errors moreal Mar 20, 2026 https://github.com/RustPython/RustPython/pull/7476/commits/b725ca7ecb04cedd5e026515c99ec90eec417db3
Clear filters https://github.com/RustPython/RustPython/pull/7476/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/7476/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/7476/files
test_descr.py https://github.com/RustPython/RustPython/pull/7476/files#diff-6b813570d02ae3544e7e0233ae21d647f8e2dc47486495557e8d16c80460e85b
function.rs https://github.com/RustPython/RustPython/pull/7476/files#diff-42d321490bc76e3b57deebb41ff9815e8bbb7c976bb1b57a076d01f7bc347698
Lib/test/test_descr.pyhttps://github.com/RustPython/RustPython/pull/7476/files#diff-6b813570d02ae3544e7e0233ae21d647f8e2dc47486495557e8d16c80460e85b
View file https://github.com/moreal/RustPython/blob/b725ca7ecb04cedd5e026515c99ec90eec417db3/Lib/test/test_descr.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/7476/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/7476/files#diff-6b813570d02ae3544e7e0233ae21d647f8e2dc47486495557e8d16c80460e85b
https://github.com/RustPython/RustPython/pull/7476/files#diff-6b813570d02ae3544e7e0233ae21d647f8e2dc47486495557e8d16c80460e85b
crates/vm/src/builtins/function.rshttps://github.com/RustPython/RustPython/pull/7476/files#diff-42d321490bc76e3b57deebb41ff9815e8bbb7c976bb1b57a076d01f7bc347698
View file https://github.com/moreal/RustPython/blob/b725ca7ecb04cedd5e026515c99ec90eec417db3/crates/vm/src/builtins/function.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/7476/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/7476/files#diff-42d321490bc76e3b57deebb41ff9815e8bbb7c976bb1b57a076d01f7bc347698
https://github.com/RustPython/RustPython/pull/7476/files#diff-42d321490bc76e3b57deebb41ff9815e8bbb7c976bb1b57a076d01f7bc347698
https://github.com/RustPython/RustPython/pull/7476/files#diff-42d321490bc76e3b57deebb41ff9815e8bbb7c976bb1b57a076d01f7bc347698
https://github.com/RustPython/RustPython/pull/7476/files#diff-42d321490bc76e3b57deebb41ff9815e8bbb7c976bb1b57a076d01f7bc347698
Please reload this pagehttps://github.com/RustPython/RustPython/pull/7476/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.