-
-
Notifications
You must be signed in to change notification settings - Fork 34.3k
Docs: fill in descriptor C API docs #146644
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Boyeep
wants to merge
3
commits into
python:main
Choose a base branch
from
Boyeep:descriptor-c-api-docs
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+79
−11
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,13 +8,31 @@ Descriptor Objects | |
| "Descriptors" are objects that describe some attribute of an object. They are | ||
| found in the dictionary of type objects. | ||
|
|
||
| .. XXX document these! | ||
|
|
||
| .. c:function:: PyObject* PyDescr_NewGetSet(PyTypeObject *type, struct PyGetSetDef *getset) | ||
|
|
||
| Create a new get-set descriptor for extension type *type* from the | ||
| :c:type:`PyGetSetDef` structure *getset*. | ||
|
|
||
| Get-set descriptors expose attributes implemented by C getter and setter | ||
| functions rather than stored directly in the instance. This is the same kind | ||
| of descriptor created for entries in :c:member:`~PyTypeObject.tp_getset`, and | ||
| it appears in Python as a :class:`types.GetSetDescriptorType` object. | ||
|
|
||
| On success, return a :term:`strong reference` to the descriptor. Return | ||
| ``NULL`` with an exception set on failure. | ||
|
|
||
| .. c:function:: PyObject* PyDescr_NewMember(PyTypeObject *type, struct PyMemberDef *member) | ||
|
|
||
| .. c:function:: PyObject* PyDescr_NewMember(PyTypeObject *type, struct PyMemberDef *meth) | ||
| Create a new member descriptor for extension type *type* from the | ||
| :c:type:`PyMemberDef` structure *member*. | ||
|
|
||
| Member descriptors expose fields in the type's C struct as Python | ||
| attributes. This is the same kind of descriptor created for entries in | ||
| :c:member:`~PyTypeObject.tp_members`, and it appears in Python as a | ||
| :class:`types.MemberDescriptorType` object. | ||
|
|
||
| On success, return a :term:`strong reference` to the descriptor. Return | ||
| ``NULL`` with an exception set on failure. | ||
|
|
||
| .. c:var:: PyTypeObject PyMemberDescr_Type | ||
|
|
||
|
|
@@ -30,22 +48,53 @@ found in the dictionary of type objects. | |
| The type object for get/set descriptor objects created from | ||
| :c:type:`PyGetSetDef` structures. These descriptors implement attributes | ||
| whose value is computed by C getter and setter functions, and are used | ||
| for many built-in type attributes. | ||
| for many built-in type attributes. They correspond to | ||
| :class:`types.GetSetDescriptorType` objects in Python. | ||
|
|
||
|
|
||
| .. c:function:: PyObject* PyDescr_NewMethod(PyTypeObject *type, struct PyMethodDef *meth) | ||
|
|
||
| Create a new method descriptor for extension type *type* from the | ||
| :c:type:`PyMethodDef` structure *meth*. | ||
|
|
||
| Method descriptors expose C functions as methods on a type. This is the same | ||
| kind of descriptor created for entries in | ||
| :c:member:`~PyTypeObject.tp_methods`, and it appears in Python as a | ||
| :class:`types.MethodDescriptorType` object. | ||
|
|
||
| On success, return a :term:`strong reference` to the descriptor. Return | ||
| ``NULL`` with an exception set on failure. | ||
|
|
||
| .. c:var:: PyTypeObject PyMethodDescr_Type | ||
|
|
||
| The type object for method descriptor objects created from | ||
| :c:type:`PyMethodDef` structures. These descriptors expose C functions as | ||
| methods on a type, and correspond to :class:`types.MemberDescriptorType` | ||
| methods on a type, and correspond to :class:`types.MethodDescriptorType` | ||
| objects in Python. | ||
|
|
||
|
|
||
| .. c:function:: PyObject* PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *wrapper, void *wrapped) | ||
| .. c:struct:: wrapperbase | ||
|
|
||
| Describes a slot wrapper used by :c:func:`PyDescr_NewWrapper`. | ||
|
|
||
| Each ``wrapperbase`` record stores the Python-visible name and metadata for a | ||
| special method implemented by a type slot, together with the wrapper | ||
| function used to adapt that slot to Python's calling convention. | ||
|
|
||
| .. c:function:: PyObject* PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *base, void *wrapped) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, I'll be working on it |
||
|
|
||
| Create a new wrapper descriptor for extension type *type* from the | ||
| :c:struct:`wrapperbase` structure *base* and the wrapped slot function | ||
| pointer | ||
| *wrapped*. | ||
|
|
||
| Wrapper descriptors expose special methods implemented by type slots. This | ||
| is the same kind of descriptor that CPython creates for slot-based special | ||
| methods such as ``__repr__`` or ``__add__``, and it appears in Python as a | ||
| :class:`types.WrapperDescriptorType` object. | ||
|
|
||
| On success, return a :term:`strong reference` to the descriptor. Return | ||
| ``NULL`` with an exception set on failure. | ||
|
|
||
| .. c:var:: PyTypeObject PyWrapperDescr_Type | ||
|
|
||
|
|
@@ -58,6 +107,16 @@ found in the dictionary of type objects. | |
|
|
||
| .. c:function:: PyObject* PyDescr_NewClassMethod(PyTypeObject *type, PyMethodDef *method) | ||
|
|
||
| Create a new class method descriptor for extension type *type* from the | ||
| :c:type:`PyMethodDef` structure *method*. | ||
|
|
||
| Class method descriptors expose C methods that receive the class rather than | ||
| an instance when accessed. This is the same kind of descriptor created for | ||
| ``METH_CLASS`` entries in :c:member:`~PyTypeObject.tp_methods`, and it | ||
| appears in Python as a :class:`types.ClassMethodDescriptorType` object. | ||
|
|
||
| On success, return a :term:`strong reference` to the descriptor. Return | ||
| ``NULL`` with an exception set on failure. | ||
|
|
||
| .. c:function:: int PyDescr_IsData(PyObject *descr) | ||
|
|
||
|
|
@@ -66,8 +125,18 @@ found in the dictionary of type objects. | |
| no error checking. | ||
|
|
||
|
|
||
| .. c:function:: PyObject* PyWrapper_New(PyObject *, PyObject *) | ||
| .. c:function:: PyObject* PyWrapper_New(PyObject *d, PyObject *self) | ||
|
|
||
| Create a new bound wrapper object from the wrapper descriptor *d* and the | ||
| instance *self*. | ||
|
|
||
| This is the bound form of a wrapper descriptor created by | ||
| :c:func:`PyDescr_NewWrapper`. CPython creates these objects when a slot | ||
| wrapper is accessed through an instance, and they appear in Python as | ||
| :class:`types.MethodWrapperType` objects. | ||
|
|
||
| On success, return a :term:`strong reference` to the wrapper object. Return | ||
| ``NULL`` with an exception set on failure. | ||
|
|
||
| .. c:macro:: PyDescr_COMMON | ||
|
|
||
|
|
@@ -104,9 +173,9 @@ Built-in descriptors | |
| .. c:var:: PyTypeObject PyClassMethodDescr_Type | ||
|
|
||
| The type object for C-level class method descriptor objects. | ||
| This is the type of the descriptors created for :func:`classmethod` defined in | ||
| C extension types, and is the same object as :class:`classmethod` | ||
| in Python. | ||
| This is the type of the descriptors created for :func:`classmethod` defined | ||
| in C extension types, and corresponds to | ||
| :class:`types.ClassMethodDescriptorType` objects in Python. | ||
|
|
||
|
|
||
| .. c:function:: PyObject *PyClassMethod_New(PyObject *callable) | ||
|
|
||
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
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.
Add this suggestion to a batch that can be applied as a single commit.
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.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's elaborate a little more (the same goes for the ones below):