{{ message }}
gh-141004: Document descriptor and dict proxy type objects#141803
Merged
ZeroIntensity merged 10 commits intoDec 1, 2025
Merged
gh-141004: Document descriptor and dict proxy type objects#141803ZeroIntensity merged 10 commits into
ZeroIntensity merged 10 commits into
Conversation
Contributor
Author
|
Hi @ZeroIntensity, thanks for the review and apologies for the delay. I've addressed all the feedback:
All checks are passing. Please let me know if anything else needs adjustment. |
Sorry, something went wrong.
ZeroIntensity
left a comment
Member
There was a problem hiding this comment.
Looks pretty good, a few final comments.
Sorry, something went wrong.
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
vstinner
approved these changes
Dec 1, 2025
vstinner
left a comment
Member
There was a problem hiding this comment.
LGTM
Sorry, something went wrong.
Co-authored-by: Victor Stinner <vstinner@python.org>
ZeroIntensity
approved these changes
Dec 1, 2025
ZeroIntensity
left a comment
Member
There was a problem hiding this comment.
LGTM as well, thanks!
Sorry, something went wrong.
Hide details
View details
ZeroIntensity
merged commit
52f9b5f
into
python:main
Dec 1, 2025
32 checks passed
|
Thanks @Yashp002 for the PR, and @ZeroIntensity for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13, 3.14. |
Sorry, something went wrong.
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Dec 1, 2025
…honGH-141803) (cherry picked from commit 52f9b5f) Co-authored-by: Yashraj <yashrajpala8@gmail.com> Co-authored-by: Peter Bierma <zintensitydev@gmail.com> Co-authored-by: Victor Stinner <vstinner@python.org>
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Dec 1, 2025
…honGH-141803) (cherry picked from commit 52f9b5f) Co-authored-by: Yashraj <yashrajpala8@gmail.com> Co-authored-by: Peter Bierma <zintensitydev@gmail.com> Co-authored-by: Victor Stinner <vstinner@python.org>
StanFromIreland
pushed a commit
to StanFromIreland/cpython
that referenced
this pull request
Dec 6, 2025
…honGH-141803) Co-authored-by: Peter Bierma <zintensitydev@gmail.com> Co-authored-by: Victor Stinner <vstinner@python.org>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.
This PR adds C API documentation for six previously undocumented type objects:
In
Doc/c-api/descriptor.rst:PyClassMethodDescr_Type- type for class method descriptorsPyGetSetDescr_Type- type for get/set descriptorsPyMemberDescr_Type- type for member descriptorsPyMethodDescr_Type- type for method descriptorsPyWrapperDescr_Type- type for wrapper descriptorsIn
Doc/c-api/dict.rst:PyDictProxy_Type- type for mapping proxy objectsEach entry follows the existing documentation style and includes a brief description of the type's purpose and its relationship to the Python layer.
Contributes to #141004.
📚 Documentation preview 📚: https://cpython-previews--141803.org.readthedocs.build/